gpt4 book ai didi

C++ 无法在我的 mac 上运行,未找到架构 x86_64 的符号

转载 作者:行者123 更新时间:2023-11-30 21:11:14 25 4
gpt4 key购买 nike

这是代码,非常基本的 Cpp

#include <iostream>
using namespace std;

int main(){
cout << "C++ is FUN!\n";
return 0;
}

无法找到的符号是尝试使用 namespace 的“std”和“cout”。完整的错误消息是。

make: *** [FirstProject] Error 1    FirstProject            C/C++ Problem   
Symbol 'cout' could not be resolved FirstProgram.cpp /FirstProject line 5 Semantic Error
Symbol 'std' could not be resolved FirstProgram.cpp /FirstProject line 2 Semantic Error
symbol(s) not found for architecture x86_64 FirstProject C/C++ Problem

编辑:这是整个链接器行:

make all 
Building target: FirstProject
Invoking: Cross G++ Linker
g++ -o "FirstProject" ./FirstProgram.o
Undefined symbols for architecture x86_64:
"_main", referenced from:
implicit entry/start for main executable
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
make: *** [FirstProject] Error 1

有人知道可能出现什么问题吗?

最佳答案

您没有使用 C++ 编译器进行编译。

如果您使用的是 GNU 工具链,请使用 g++ 而不是 gcc

关于C++ 无法在我的 mac 上运行,未找到架构 x86_64 的符号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24912717/

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