连接 yaml-cpp 和柯南
Linking yaml-cpp with conan
我在柯南文件 yaml-cpp/0.6.3
中使用了 conan center 中的 yaml-cpp
以及其他依赖项。
其余库 link 正常,因此我的 CMakeLists.txt
文件中一定缺少某些内容。 (也许一些额外的定义......?)
到目前为止,这些行:
include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake)
conan_basic_setup()
set(CMAKE_CXX_STANDARD 20)
它运行良好(对于其他库,如 bullet、glm...)
在link时,出现缺少实现的问题:
cmake --build build --config Debug --target all -- -j 10
/usr/bin/ld: CMakeFiles/my-project.dir/src/MySourceFile.cpp.o: in function `YAML::Node::Scalar[abi:cxx11]() const':
/home/my-user/.conan/data/yaml-cpp/0.6.3/_/_/package/82ef5eac51c38971dea2fd342dd55ddf2ddfbbc3/include/yaml-cpp/node/impl.h:169: undefined reference to `YAML::detail::node_data::empty_scalar[abi:cxx11]()'
/usr/bin/ld: CMakeFiles/my-project.dir/src/MySource.cpp.o: in function `tojson::loadyaml(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)':
/home/my-user/my-project/lib/nlohmann/tojson.hpp:162: undefined reference to `YAML::LoadFile(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)'
collect2: error: ld returned 1 exit status
似乎问题在于 YAML::LoadFile
似乎未定义。
(我也试过在没有 tojson
的情况下使用它)
YAML::Node test = YAML::LoadFile("test.yaml");
程序包没问题,但您的配置文件配置错误。
undefined reference to `YAML::LoadFile(std::__cxx11::basic_string<char, std::char_traits, std::allocator > const&)'
collect2: error: ld returned 1 exit status
您必须更新您的 libcxx 设置:
conan profile update settings.compiler.libcxx=libstdc++11 default
更多信息关于:https://docs.conan.io/en/latest/howtos/manage_gcc_abi.html
我在柯南文件 yaml-cpp/0.6.3
中使用了 conan center 中的 yaml-cpp
以及其他依赖项。
其余库 link 正常,因此我的 CMakeLists.txt
文件中一定缺少某些内容。 (也许一些额外的定义......?)
到目前为止,这些行:
include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake)
conan_basic_setup()
set(CMAKE_CXX_STANDARD 20)
它运行良好(对于其他库,如 bullet、glm...)
在link时,出现缺少实现的问题:
cmake --build build --config Debug --target all -- -j 10
/usr/bin/ld: CMakeFiles/my-project.dir/src/MySourceFile.cpp.o: in function `YAML::Node::Scalar[abi:cxx11]() const':
/home/my-user/.conan/data/yaml-cpp/0.6.3/_/_/package/82ef5eac51c38971dea2fd342dd55ddf2ddfbbc3/include/yaml-cpp/node/impl.h:169: undefined reference to `YAML::detail::node_data::empty_scalar[abi:cxx11]()'
/usr/bin/ld: CMakeFiles/my-project.dir/src/MySource.cpp.o: in function `tojson::loadyaml(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)':
/home/my-user/my-project/lib/nlohmann/tojson.hpp:162: undefined reference to `YAML::LoadFile(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)'
collect2: error: ld returned 1 exit status
似乎问题在于 YAML::LoadFile
似乎未定义。
(我也试过在没有 tojson
的情况下使用它)
YAML::Node test = YAML::LoadFile("test.yaml");
程序包没问题,但您的配置文件配置错误。
undefined reference to `YAML::LoadFile(std::__cxx11::basic_string<char, std::char_traits, std::allocator > const&)' collect2: error: ld returned 1 exit status
您必须更新您的 libcxx 设置:
conan profile update settings.compiler.libcxx=libstdc++11 default
更多信息关于:https://docs.conan.io/en/latest/howtos/manage_gcc_abi.html