首页 > 代码库 > GNU Libtool
GNU Libtool
Fastbit (WAH)的代码可在链接中下载
安装以及运行命令如下:
解压命令:$ tar -zxvf fastbit-ibis1.3.8.tar.gz 安装命令:$ cd fastbit-ibis1.3.8$ ./configure$ make 由于安装时Makefile使用了GNU Libtool创建库,生成Libtool的库文件libfastbit.la,这个文件在./src下。假设当前测试文件名为test.cpp,它在fastbit-ibis1.3.8下,编译运行test.cpp文件时,运行命令:$ libtool --mode=compile g++ -c test.cpp$ libtool --mode=link g++ -o test test.lo src/libfastbit.la$ ./test 为了方便,我们可以通过写bash脚本方便我们编译和运行。脚本cmd.sh如下:libtool --mode=compile g++ -c test.cpplibtool --mode=link g++ -o test test.lo src/libfastbit.la./testrm testrm test.lo 运行脚本:$ sh cmd.sh
GNU Libtool
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。