我似乎無法得到此工作。我配置了--with-gcc-toolchain=
,在平等之後,我把gcc所在的目錄(/usr/lib/gcc-snapshot/bin
)。Clang鏈接器問題(從源代碼到gcc快照)
我也查看了「clang linker problem」的答案,但我沒有看到我如何得到接受的答案以找到正確的位置,並且符號鏈接的答案會起作用,除了它正在搜索的所有目錄存在(將gcc-snapshot中的lib
文件夾複製到其中一個包含位置似乎沒有幫助)。
正如在其他問題提出的clang++ test.cpp -v
輸出:
[email protected]:~/programming$ clang++ test.cpp -v
clang version 3.3 (trunk 171350)
Target: x86_64-unknown-linux-gnu
Thread model: posix
"/home/bob/programming/build/Release+Asserts/bin/clang" -cc1 -triple x86_64-unknown-linux-gnu -emit-obj -mrelax-all -disable-free -main-file-name test.cpp -mrelocation-model static -mdisable-fp-elim -fmath-errno -masm-verbose -mconstructor-aliases -munwind-tables -target-cpu x86-64 -target-linker-version 2.22 -momit-leaf-frame-pointer -v -resource-dir /home/bob/programming/build/Release+Asserts/bin/../lib/clang/3.3 -fmodule-cache-path /var/tmp/clang-module-cache -internal-isystem /usr/local/include -internal-isystem /home/bob/programming/build/Release+Asserts/bin/../lib/clang/3.3/include -internal-externc-isystem /usr/include/x86_64-linux-gnu -internal-externc-isystem /include -internal-externc-isystem /usr/include -fdeprecated-macro -fdebug-compilation-dir /home/bob/programming -ferror-limit 19 -fmessage-length 80 -mstackrealign -fobjc-runtime=gcc -fcxx-exceptions -fexceptions -fdiagnostics-show-option -fcolor-diagnostics -backend-option -vectorize-loops -o /tmp/test-PWiB4M.o -x c++ test.cpp
clang -cc1 version 3.3 based upon LLVM 3.3svn default target x86_64-unknown-linux-gnu
ignoring nonexistent directory "/include"
#include "..." search starts here:
#include <...> search starts here:
/usr/local/include
/home/bob/programming/build/Release+Asserts/bin/../lib/clang/3.3/include
/usr/include/x86_64-linux-gnu
/usr/include
End of search list.
test.cpp:1:10: fatal error: 'iostream' file not found
#include ^
1 error generated.
鐺版本3.3(樹幹修訂版171350)
編輯:沒有.o
文件爲的Release+Asserts
文件夾建立。這是正常的嗎?如果不是的話,爲什麼會出現這種情況,我該如何解決它(如果我可以將它指向clang的stdlib,那麼它也可以)。
編輯2:它也無法編譯int main(){return 0;}
,因爲它無法找到crtbegin.o
。全輸出如下:
/usr/bin/ld: cannot find crtbegin.o: No such file or directory
/usr/bin/ld: cannot find -lgcc
/usr/bin/ld: cannot find -lgcc_s
clang: error: linker command failed with exit code 1 (use -v to see invocation)
-v
後的結果是與上述相同,但與最後的結束誤差是不同的。
的config.log:
完整的文件可以發現here,但第一(非註釋)線:$ ../llvm/configure --with-gcc-toolchain=/usr/lib/gcc-snapshot/gcc
Test.cpp是否編譯並鏈接到g ++?在您的輸出中,代碼無法編譯,因爲找不到iostream。 - – emil
@emil多數民衆贊成我的觀點。我添加了另一個無法在編輯2中編譯的例子。它使用g ++編譯得很好 – soandos
在你安裝的地方iostream文件在哪裏(你的llvm前綴) – Spundun