我在OpenSUSE上开发了一个c ++软件,我喜欢在另一个OpenSUSE系统上测试。
我在其他系统上复制了可执行文件,但是当我启动它时,我收到一个错误:
加载共享库时出现"错误:libboost_system.so.1.61.0: 无法打开共享对象文件:没有这样的文件或目录"
如何编译没有依赖项的独立可执行文件?
Eclipse这样做:
17:24:41 **** Incremental Build of configuration Debug for project boostServer ****
make all
Building file: ../src/boostCom.cpp
Invoking: Cross G++ Compiler
g++ -I/opt/boost -I/usr/local/lib -O0 -g3 -Wall -c -fmessage-length=0 -isystem /opt/boost -MMD -MP -MF"src/boostCom.d" -MT"src/boostCom.o" -o "src/boostCom.o" "../src/boostCom.cpp"
Finished building: ../src/boostCom.cpp
Building file: ../src/main.cpp
Invoking: Cross G++ Compiler
g++ -I/opt/boost -I/usr/local/lib -O0 -g3 -Wall -c -fmessage-length=0 -isystem /opt/boost -MMD -MP -MF"src/main.d" -MT"src/main.o" -o "src/main.o" "../src/main.cpp"
Finished building: ../src/main.cpp
Building target: boostServer
Invoking: Cross G++ Linker
g++ -L/usr/local/lib -o "boostServer" ./src/boostCom.o ./src/boostServer.o ./src/main.o -lboost_system -lboost_serialization -lboost_thread -lboost_date_time -lpthread
Finished building target: boostServer
迎接Ulf
答案 0 :(得分:0)
您需要确保在系统上安装了boost库,并且它们的路径包含在LD_LIBRARY_PATH
变量中。
例如,如果要在系统上的libboost_system.so
找到/usr/local/boost-1.56.0/lib64
文件(或符号链接),则运行该命令。
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/boost-1.56.0/lib64`
要准确找出所需的库,可以运行命令:
ldd my_binary
输出将准确地告诉您哪些库是必需的,哪些库目前无法解析。