1

我正在尝试构建我几个月前最后一次工作的 CMake 项目,但我收到以下错误消息:

make[3]: *** No rule to make target `/usr/lib/libboost_unit_test_framework-mt.so', needed by `test/baumwelchtests'.  Stop.

确实,这个文件在 中不存在/usr/lib,只有libboost_unit_test_framework.so. 普通版和普通版有什么区别-mt?我很确定在最近的一次系统升级后删除了 -mt 版本(我正在运行 Debian 测试,所以在最新的稳定版本之后有很多变化)。我怎样才能让我的东西编译?

我的 CMakeLists.txt 看起来像这样:

# Include subdirectories for headers
find_package( Boost REQUIRED COMPONENTS unit_test_framework regex)

include_directories(${BaumWelch_SOURCE_DIR}/../../grzesLib/src
                    ${BaumWelch_SOURCE_DIR}/src 
                    ${Boost_INCLUDE_DIRS})

if(CMAKE_COMPILER_IS_GNUCXX)
    add_definitions(-g -std=c++11 -Wall -Werror -Wextra -pedantic -Wuninitialized)
endif()


# Create the unit tests executable
add_executable(
 baumwelchtests stockestimationtests.cpp forecasttest.cpp lagstest.cpp hiddenmarkovmodeltest.cpp stateindextest.cpp baumiterationtest.cpp baumwelchtest.cpp sampleparameters.cpp sdetest.cpp hmmgenerator.h
 # Key includes for setting up Boost.Test
 testrunner.cpp
 # Just for handy reference
 exampletests.cpp
)

# Link the libraries
target_link_libraries( baumwelchtests ${Boost_LIBRARIES} baumwelchlib grzeslib)
4

1 回答 1

3

-mt代表多线程。

您可以通过设置强制 CMake 链接到常规的 boost 库set(Boost_USE_MULTITHREADED OFF)

但很可能你只需要安装libboost-test-dev

于 2013-09-17T15:26:53.327 回答