【发布时间】:2015-11-03 19:03:12
【问题描述】:
Yak-shaving 警报。
虽然我无法显示任何源代码,但我认为通过一篇写得很好的帖子,我可能能够提供足够的信息来获得帮助。我在下面尝试的步骤都是从其他帖子中获得的,现在变得有点循环了。
我在 OS X 上使用以下内容:
MacBook-Pro-de-Pyderman:Metaphone3 Pyderman$ which g++
/usr/bin/g++
MacBook-Pro-de-Pyderman:Metaphone3 Pyderman$ arch
i386
MacBook-Pro-de-Pyderman:Metaphone3 Pyderman$ g++ --version
Configured with: --prefix=/Library/Developer/CommandLineTools/usr
--with-gxx-include-dir=/usr/include/c++/4.2.1
Apple LLVM version 6.0 (clang-600.0.57) (based on LLVM 3.5svn)
Target: x86_64-apple-darwin13.4.0
Thread model: posix
MacBook-Pro-de-Pyderman:Metaphone3 Pyderman$ gcc --version
Configured with: --prefix=/Library/Developer/CommandLineTools/usr
--with-gxx-include-dir=/usr/include/c++/4.2.1
Apple LLVM version 6.0 (clang-600.0.57) (based on LLVM 3.5svn)
Target: x86_64-apple-darwin13.4.0
Thread model: posix
MacBook-Pro-de-Pyderman:Metaphone3 Pyderman$ clang++ --version
Apple LLVM version 6.0 (clang-600.0.57) (based on LLVM 3.5svn)
Target: x86_64-apple-darwin13.4.0
Thread model: posix
MacBook-Pro-de-Pyderman:Metaphone3 Pyderman$ brew --config
HOMEBREW_VERSION: 0.9.5
ORIGIN: https://github.com/Homebrew/homebrew
HEAD: edcf1d119c4ca9d79d7147a684b7d74767cbb1f6
Last commit: 6 weeks ago
HOMEBREW_PREFIX: /usr/local
HOMEBREW_REPOSITORY: /usr/local
HOMEBREW_CELLAR: /usr/local/Cellar
HOMEBREW_BOTTLE_DOMAIN: https://homebrew.bintray.com
CPU: dual-core 64-bit penryn
OS X: 10.9.5-x86_64
Xcode: N/A
CLT: 6.2.0.0.1.1424975374
Clang: 6.0 build 600
X11: 2.7.7 => /opt/X11
System Ruby: 2.0.0-p481
Perl: /usr/bin/perl
Python: /Library/Frameworks/Python.framework/Versions/2.7/bin/python => /Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python
Ruby: /usr/bin/ruby => /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/bin/ruby
Java: 1.6.0_65-b14-468
所以给了我三个文件:
- Metaphone3.cpp
- Metaphone3ExampleCode.cpp
- Metaphone3.h
我尝试用 g++ 编译:
g++ Metaphone3.cpp
我明白了:
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)
- gcc 和 clang++ 报告相同。
- 添加 -m32 没有任何影响。
-
g++ Metaphone3.cpp -I /usr/local/include无效
如果我尝试:
g++ -Wall -c Metaphone3.cpp
这消除了警告,并生成了 Metaphone3.o 和 Metaphone。
如果我尝试执行:
MacBook-Pro-de-Pyderman:Metaphone3 Pyderman$ ./Metaphone
-bash: ./Metaphone: Malformed Mach-o file
更多研究表明我可能错过了链接步骤。所以:
gcc Metaphone3.o -o Metaphone3
但这让我回到了最初的错误。
然后其他帖子建议删除-c 标志,但正是这个标志使我能够通过错误。所以你可以看到这是如何循环的。正如您现在可能正在收集的,我是一名开发人员,但不是 C++ 开发人员,并且来自 Python,编译世界对我来说是一个新世界。任何和所有的帮助表示赞赏
【问题讨论】:
-
g++ -Wall -c Metaphone3.cpp应该只生成Metaphone.o而不是其他任何东西
标签: c++ gcc compiler-errors g++ metaphone