2

我正在尝试在 Fedora 22 上编译 Azure 存储 c++ SDK。我使用的是 gcc 版本 5.1.1-1。当我使用以下命令编译测试应用程序时:

$> CASABLANCA_DIR=/source/codebox/azure/cpprestsdk/ CXX=g++ cmake .. -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTS=on

$> make

它产生以下错误消息:

/usr/bin/ld: CMakeFiles/azurestoragetest.dir/main.cpp.o: undefined reference to symbol 'pthread_rwlock_wrlock@@GLIBC_2.2.5'
/usr/lib64/libpthread.so.0: error adding symbols: DSO missing from command line
collect2: error: ld returned 1 exit status
tests/CMakeFiles/azurestoragetest.dir/build.make:879: recipe for target 'Binaries/azurestoragetest' failed
make[2]: *** [Binaries/azurestoragetest] Error 1
CMakeFiles/Makefile2:125: recipe for target 'tests/CMakeFiles/azurestoragetest.dir/all' failed
make[1]: *** [tests/CMakeFiles/azurestoragetest.dir/all] Error 2
Makefile:126: recipe for target 'all' failed
make: *** [all] Error 2

我可以在/usr/lib64目录中看到libpthread.so.0库。我需要安装哪个其他库?

4

2 回答 2

4

将正确的find_package调用添加到您的CMakeLists.txt

find_package(Threads)

然后,将库链接到您的目标:

target_link_libraries(my_target ${CMAKE_THREAD_LIBS_INIT})

就这样。很可能你忘记了target_link_libraries.

于 2016-11-02T23:39:00.483 回答
0

通常(在 CMake 和 Azure 存储 SDK 之外),此错误表明您需要链接到-lpthread. (使用 gcc 你可能想要-pthread。)

于 2020-09-21T17:35:28.430 回答