我尝试使用firebreath框架链接我的程序中的库。
所以我在projectDef.cmake中添加了这段代码。
include_directories(/usr/include/giblib)
include_directories(/usr/include/X11)
add_library(giblib_ptm STATIC IMPORTED)
set_property(TARGET giblib_ptm PROPERTY IMPORTED_LOCATION /usr/lib/libgiblib.a)
add_library(X11_ptm STATIC IMPORTED)
set_property(TARGET X11_ptm PROPERTY IMPORTED_LOCATION /usr/lib/i386-linux-gnu/libX11.a)
add_library(Imlib_ptm STATIC IMPORTED)
set_property(TARGET Imlib_ptm PROPERTY IMPORTED_LOCATION /usr/lib/libImlib2.a)
target_link_libraries(Printmade2 giblib_ptm X11_ptm Imlib_ptm)
为什么我添加'include_directories'是我的.cpp文件中的包含头文件。
#include <giblib.h>
#include <Xlib.h>
执行 make 后,会显示此错误消息。
/usr/lib/i386-linux-gnu/libX11.a(OpenDis.o): In function `OutOfMemory':
(.text+0x459): undefined reference to `xcb_disconnect'
/usr/lib/i386-linux-gnu/libX11.a(OpenDis.o): In function `XOpenDisplay':
(.text+0x8f5): undefined reference to `xcb_get_setup'
/usr/lib/i386-linux-gnu/libX11.a(OpenDis.o): In function `XOpenDisplay':
(.text+0xedb): undefined reference to `xcb_get_maximum_request_length'
/usr/lib/i386-linux-gnu/libX11.a(xcb_disp.o): In function `_XConnectXCB':
(.text+0x176): undefined reference to `xcb_parse_display'
/usr/lib/i386-linux-gnu/libX11.a(xcb_disp.o): In function `_XConnectXCB':
(.text+0x1d7): undefined reference to `xcb_connect_to_display_with_auth_info'
...
/usr/lib/i386-linux-gnu/libX11.a(xcb_io.o): In function `poll_for_event':
(.text+0x30e): undefined reference to `xcb_poll_for_event'
/usr/lib/i386-linux-gnu/libX11.a(xcb_io.o): In function `poll_for_response':
(.text+0x6b4): undefined reference to `xcb_poll_for_reply'
/usr/lib/i386-linux-gnu/libX11.a(xcb_io.o): In function `_XSend':
(.text+0x85f): undefined reference to `xcb_writev'
/usr/lib/i386-linux-gnu/libX11.a(xcb_io.o): In function `_XReadEvents':
(.text+0xa1f): undefined reference to `xcb_connection_has_error'
....
我认为此错误是由'add_library'和'set_property'引起的,
但我无法理解为什么。
如何在程序中链接静态库?
答案 0 :(得分:2)
我认为你误解了静态库的创建。静态库是目标文件的集合,它没有任何init / deinit代码来引入其他库,如共享库或可执行文件。
如果您在构建使用<的 applicationX 时创建使用 libraryB 和 libraryC 中的代码的 libraryA em> libraryA 您必须手动拉入 libraryB 和 libraryC 。使用共享库时,这不是必需的。
如果您调查pkg-config
,则可以看到指定静态链接所需的其他私有或内部库的属性Libs.private
。