gpt4 book ai didi

c++ - 对 __dso_handle_ 的 undefined reference - 在 cygwin 上编译 C++

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:52:07 26 4
gpt4 key购买 nike

我有一个基本的 Hello World C++ 程序,我正尝试使用 g++cygwin 上编译和运行它。代码是:

#include <iostream>
using namespace std;

int main() {

cout << "Hello world." << endl;
return 0;
}

编译它:g++ helloWorld.cpp -o h 导致以下错误:
/tmp/ccDO1S4J.o:helloWorld.cpp:(.rdata$.refptr.__dso_handle[.refptr.__dso_handle]+0x0): undefined reference __dso_handle'collect2:错误:ld 返回了 1 个退出状态`

我一直在阅读其他一些线程,这些线程表明它可能是链接器问题,并且单独调用链接器或使用详细输出可能会导致更多线索。

所以,我做到了:
1. g++ -c helloWorld.cpp -o helloWorld.o(这有效 - 没有错误)。
2. ld -o h helloWorld.o 导致大量对__main 或std::cout 的 undefined reference 等错误。

我认为这是一个链接问题,我可能需要链接另一个库。欢迎提供有关如何解决此问题的任何指示。

最佳答案

通过 cygwin 上的安装程序重新安装 g++ 成功了。

关于c++ - 对 __dso_handle_ 的 undefined reference - 在 cygwin 上编译 C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26590226/

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