2

当我尝试将 clang 作为我的 C 编译器运行时,出现错误(我认为是链接器错误)

Compilation started at Sun Nov 11 14:34:55

make -k 
clang -std=c99 -ggdb  -o0 -Wall -Werror helloworld.c -o helloworld
clang: warning: unknown platform, assuming -mfloat-abi=soft
/usr/bin/ld: cannot find crt1.o: No such file or directory
/usr/bin/ld: cannot find crti.o: No such file or directory
clang: error: linker command failed with exit code 1 (use -v to see invocation)
make: *** [helloworld] Error 1

Compilation exited abnormally with code 2 at Sun Nov 11 14:34:56

我实际上重新安装了 Raspbian 图像,以为问题会消失,但它仍然存在。Raspbian 版本是最新的 Raspbian Wheezy 硬浮点 ABI (2012-10-28)。

4

1 回答 1

4

正如您基本上已经发现的那样,已安装的 clang 已无法使用。如果您是通过包管理器安装的,请向分发该包的人投诉,因为他们显然没有费心对其进行测试。

于 2012-11-11T22:24:16.087 回答