gpt4 book ai didi

linker - clang++(版本 5)和 LNK4217 警告

转载 作者:行者123 更新时间:2023-12-03 00:21:35 28 4
gpt4 key购买 nike

我刚刚学习如何编码。

我已使用 Visual Studio 14 在 Windows 10 系统上安装了 clang 版本 5。

我创建了一个 hello world cpp 文件来测试它是否正常工作。

示例代码

#include <iostream>
using namespace std;

int main()
{
cout << "Hello World!\n";
int rip{1};
int dal{4};

int kane = rip + dal;

cout << kane;
return 0;
}

命令

clang++ -o .\bin\testing.exe test.cpp

Clang 确实进行了编译,并且我得到了一个可以按预期运行的可执行文件。不过我确实收到了这条消息。

    test-3e53b3.o : warning LNK4217: locally defined symbol ___std_terminate imported in function "int `public: __thiscall std::basic_ostream<char,struct std::char_traits<char> >::sentry::~sentry(void)'::`1'::dtor$5" (?dtor$5@?0???1sentry@?$basic_ostream@DU?$char_traits@D@std@@@std@@QAE@XZ@4HA)
test-3e53b3.o : warning LNK4217: locally defined symbol __CxxThrowException@8 imported in function "public: void __thiscall std::ios_base::clear(int,bool)" (?clear@ios_base@std@@QAEXH_N@Z)

我在网上搜索过,可以找到类似的问题,但并不相同。

我意识到这对你们来说可能很简单,但我很困惑,我使用过各种IDES和GCC,并且这段代码以前没有产生过这个警告。

最佳答案

-Xclang -flto-visibility-public-std 添加到您的编译器选项中。

像这样:

clang++ -Xclang -flto-visibility-public-std -o test.exe test.cpp

编辑:

或者使用clang-cl代替:

clang-cl -o test.exe test.cpp

关于linker - clang++(版本 5)和 LNK4217 警告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42545078/

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