码迷,mamicode.com
首页 > 其他好文 > 详细

GNU Libtool

时间:2014-12-16 19:01:09      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:blog   http   ar   使用   sp   for   on   文件   div   

Fastbit (WAH)的代码可在链接bubuko.com,布布扣中下载

安装以及运行命令如下:

解压命令:
$ 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.cpp
libtool --mode=link g++ -o test test.lo src/libfastbit.la
./test
rm test
rm test.lo
 
 
运行脚本:
$ sh cmd.sh

  

 

GNU Libtool

标签:blog   http   ar   使用   sp   for   on   文件   div   

原文地址:http://www.cnblogs.com/yejinru/p/4167696.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!