C++ compile error when includeing Irrlicht static lib

跟風遠走 提交于 2019-12-23 09:52:17

问题


U have a compile error when trying to include the Irrlicht static libraries into my cmake project

Compile error:

max@max-MS-7369:~/Desktop/survival/build$ make Scanning dependencies   of target survival
[ 33%] Building CXX object    src/CMakeFiles/survival.dir/technic.cpp.o
[ 66%] Building CXX object   src/CMakeFiles/survival.dir/render.cpp.o
[100%] Building CXX object    src/CMakeFiles/survival.dir/survival.cpp.o
Linking CXX executable    ../debug/survival
/usr/bin/ld:    ../../irrlicht/lib/Linux/libIrrlicht.a(CIrrDeviceLinux.o): undefined   reference to symbol 'XConvertSelection'
/usr/bin/ld: note:    'XConvertSelection' is defined in DSO    /usr/lib/gcc/x86_64-linux-gnu/4.6/../../../x86_64-linux-gnu/libX11.so  so try adding it to the linker command line
/usr/lib/gcc/x86_64-linux-gnu/4.6/../../../x86_64-linux-gnu/libX11.so: could not read symbols: Invalid operation
collect2: ld returned 1 exit status
make[2]: *** [debug/survival] Error 1
make[1]: ***    [src/CMakeFiles/survival.dir/all] Error 2
make: *** [all] Error 2
max@max-MS-7369:~/Desktop/survival/build$

And this is how I try to include the lib:

# find dependencies for irrlicht
FIND_PACKAGE(ZLIB)
FIND_PACKAGE(X11)
FIND_PACKAGE(OpenGL)
# includes
set( survival_CUSTOM_INCLUDES
    ${ZLIB_INCLUDE_DIR}
    ${X11_INCLUDE_DIR}
    ${OPENGL_INCLUDE_DIR}
    ${survival_SOURCE_DIR}/irrlicht/include
    )
# libraries
set( survival_CUSTOM_LIBRARIES
    ${ZLIB_LIBRARIES}
    ${X11_LIBRARIES}
    ${OPENGL_LIBRARIES}
    ${survival_SOURCE_DIR}/irrlicht/lib/Linux/libIrrlicht.a
    )

I don't get why it says it cant find XConvertSelection even though I have included the X11 lib.


回答1:


i added those 2 libs to fix it

/usr/lib/x86_64-linux-gnu/libX11.so
/usr/lib/x86_64-linux-gnu/libXxf86vm.so.1

they werent included by the libs given from FIND_PACKAGE()



来源:https://stackoverflow.com/questions/14772681/c-compile-error-when-includeing-irrlicht-static-lib

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!