g++使用第三方库编译时遇到的一个小问题

假设你有程序a.cpp,要使用第三方库libS.a,第三方库提供了头文件S.h。假定S.h中定义了很多函数,任意举一个例子,声明为void M1(int &)的方法。

因为你要调用M1方法,所以你会在a.cpp中加入#include S.h这么一行。

现在编译。Makefile中大概是这样写的:

a.o : a.cpp
	g++ -c a.cpp

a : a.o libS.a
	g++ libS.a –o a a.o

问题出来了,编译会报错,说undefined reference to ‘M1(int&)’

纳闷啊~~~

...

解决办法:

把libS.a的顺序放在最后,也就是改为g++ –o a a.o libS.a就好了。

为什么呢?

那一定是你没有认真看g++的帮助文档。其中关于库的使用中有如下说明:

-l library
Search the library named library when linking. (The second alternative with the library as a separate argument is only for POSIX compliance and is not recommended.)
It makes a difference where in the command you write this option; the linker searches and processes libraries and object files in the order they are specified. Thus, foo.o -lz bar.o searches library z after file foo.o but before bar.o. If bar.o refers to functions in z, those functions may not be loaded.

The linker searches a standard list of directories for the library, which is actually a file named liblibrary.a. The linker then uses this file as if it had been specified precisely by name.

The directories searched include several standard system directories plus any that you specify with -L.

Normally the files found this way are library files---archive files whose members are object files. The linker handles an archive file by scanning through it for members which define symbols that have so far been referenced but not defined. But if the file that is found is an ordinary object file, it is linked in the usual fashion. The only difference between using an -l option and specifying a file name is that -l surrounds library with lib and .a and searches several directories.

注意一下上面的粗体字就知道原因了。所以,唉,想想真二。

 

好了,顺便提一下,怎么在Qt中引用第三方库呢,你只需要在.pro文件中加两行,类似

INCLUDEPATH += 你的第三方库头文件路径,如/home/a/b/include
LIBS += 你的第三方库文件路径,如/home/a/b/libS.a

转载于:https://www.cnblogs.com/guocai/archive/2012/06/28/2567373.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值