gpt4 book ai didi

c++ - CMake 生成的程序无法在 Windows 上链接 : tries to link to non-existent file

转载 作者:可可西里 更新时间:2023-11-01 10:32:01 28 4
gpt4 key购买 nike

我正在尝试在 Windows 上编译一个非常简单的测试程序,但不断收到链接器错误。要链接的程序如下:

#include <boost/asio/io_context.hpp>

int main()
{
boost::asio::io_context context;
}

虽然 CMakeLists.txt 看起来像这样:

cmake_minimum_required(VERSION 3.10 FATAL_ERROR)
project(windows-test)

SET(CMAKE_CXX_STANDARD 17)

find_package(Boost 1.6.7 COMPONENTS system)

include_directories("${Boost_INCLUDE_DIRS}")
add_executable(windows-test main.cpp)
target_link_libraries(windows-test Boost::system)

当使用 nmake 构建它时,它失败并输出以下内容:

-- Boost version: 1.67.0
-- Found the following Boost libraries:
-- system
-- Configuring done
-- Generating done
-- Build files have been written to: Z:/windows-test/build
[ 50%] Linking CXX executable windows-test.exe
LINK Pass 1: command "C:\PROGRA~2\MICROS~1\2017\BUILDT~1\VC\Tools\MSVC\1414~1.264\bin\Hostx64\x64\link.exe /nologo @CMakeFiles\windows-test.dir\objects1.rsp /out:windows-test.exe /implib:windows-test.lib /pdb:Z:\windows-test\build\windows-test.pdb /version:0.0 /machine:x64 /debug /INCREMENTAL /subsystem:console C:\local\boost_1_67_0\lib64-msvc-14.1\boost_system-vc141-mt-gd-x64-1_67.lib kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib /MANIFEST /MANIFESTFILE:CMakeFiles\windows-test.dir/intermediate.manifest CMakeFiles\windows-test.dir/manifest.res" failed (exit code 1104) with the following output:
LINK : fatal error LNK1104: cannot open file 'libboost_system-vc141-mt-gd-x64-1_67.lib'
NMAKE : fatal error U1077: '"C:\Program Files\CMake\bin\cmake.exe"' : return code '0xffffffff'
Stop.
NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\VC\Tools\MSVC\14.14.26428\bin\HostX64\x64\nmake.exe"' : return code '0x2'
Stop.
NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\VC\Tools\MSVC\14.14.26428\bin\HostX64\x64\nmake.exe"' : return code '0x2'
Stop.

文件'libboost_system-vc141-mt-gd-x64-1_67.lib'在系统上确实不存在,但我不知道它来自哪里,因为它没有出现在链接器命令中它正在执行。链接器命令显示文件 C:\local\boost_1_67_0\lib64-msvc-14.1\boost_system-vc141-mt-gd-x64-1_67.lib,它确实存在。

为什么哦,为什么它会尝试链接到一个丢失的文件,这个文件在链接器命令中没有出现?我觉得这里超出了我的理解范围,因为我已经将近 20 年没有使用过 Windows,而且以前也从来没有移植到它。

最佳答案

Boost header 包含 Windows 上的链接器命令,以便在包含适当的 header 时自动链接 Boost 库。但是,您的设置似乎对库使用了不同的命名方案,这使得它们无法链接。

您可以通过定义预处理器宏 BOOST_ALL_NO_LIB 来禁用 Boost 自动链接功能。像这样:

target_compile_definitions(windows-test PRIVATE BOOST_ALL_NO_LIB)

关于c++ - CMake 生成的程序无法在 Windows 上链接 : tries to link to non-existent file,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51150197/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com