gpt4 book ai didi

c++ - 架构 x86_64 : Which architecture should I use? 的 undefined symbol

转载 作者:IT老高 更新时间:2023-10-28 12:29:02 26 4
gpt4 key购买 nike

我正在尝试在 C++ 中做一些非常简单的事情,但我找不到任何关于如何解决这个问题的信息。甚至我刚刚说的书“只需编译并运行程序”。

test.cpp

#include <iostream> 
using namespace std;

int main()
{
cout << "Never fear, C++ is here!";
return 0;
}

编译器说:

Undefined symbols for architecture x86_64:
"std::cout", referenced from:
_main in ccVfJHGs.o
"std::basic_ostream<char, std::char_traits<char> >& std::operator<< <std::char_traits<char> >(std::basic_ostream<char, std::char_traits<char> >&, char const*)", referenced from:
_main in ccVfJHGs.o
"std::ios_base::Init::Init()", referenced from:
__static_initialization_and_destruction_0(int, int)in ccVfJHGs.o
"std::ios_base::Init::~Init()", referenced from:
___tcf_0 in ccVfJHGs.o
ld: symbol(s) not found for architecture x86_64
collect2: ld returned 1 exit status

我尝试使用 -arch i386-m32 等标志进行编译,但它总是说这是错误的架构。我应该使用哪一个?

我在 Mac 上执行此操作,但不使用 XCode,只使用 gcc。

最佳答案

错误不是架构错误,而是 std::cout(和其他符号)未定义。

您应该使用 g++ 而不是 gcc 编译和链接,以自动链接到正确的 C++ 库。

关于c++ - 架构 x86_64 : Which architecture should I use? 的 undefined symbol ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8034568/

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