Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 MySql lib,当我编译时,虽然编译没问题,但我有这个警告:
g++:-lmysqlclient:链接器输入文件未使用,因为链接未完成
我正在使用automake,我不得不在configure.ac中添加-lmysqlclient,所以我猜链接器在每个文件中都会给我警告,链接不是必需的。
我的问题是,如何隐藏该特定警告?
谢谢!
解决!要使用 automake 添加 LD 选项,我需要添加
libsomething_la_LIBADD=-lmysqlclient
进入 Makefile.am。
现在就像@nos 所说,我没有在编译中添加 -lmysqlclient 。谢谢大家!