赞
踩
今天编译源文件为main.c
和str.c
时的一个程序时,gcc编译器报了如下错误:
$ make
cc -c -o main.o main.c
cc -c -o str.o str.c
gcc main.o str.o -o main
/usr/bin/ld: main.o: relocation R_X86_64_32 against `.rodata.str1.1' can not be used when making a PIE object; recompile with -fPIE
collect2: error: ld returned 1 exit status
make: *** [makefile:2: main] Error 1
Makefile
main:main.o str.o
gcc $^ -o $@
clean:
rm *.o main
在main.c
中我写了switch case
语句,删除之后程序就能正常编译。
实际上,cc
编译命令在我的计算机上是clang
编译器,从编译过程的输出可以看出:编译的时候使用的是clang
编译器,链接的时候使用的是gcc
编译器。
所以我猜测导致错误的原因是:编译和链接过程中使用了不同的编译器。
具体细节可通过阅读《程序员的自我修养:链接,装载与库》这本书了解。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。