为什么不能用clang ++编译这个简单的C ++代码?
这个问题在这里已经有了答案:
main.cpp
包含test.h
; 它不包含test.cpp
。 您可以通过将它们同时指定为输入来同时编译和链接它们:
[test]$ clang++ main.cpp test.cpp -o main
你错过了其他的cpp文件: clang++ main.cpp test.cpp -o main
上一篇: Why won’t this simple C++ code compile with clang++?
下一篇: Compiling a .C file: Undefined symbols for architecture x86