当前位置:   article > 正文

gcc编译器报错:/usr/bin/ld: main.o: relocation R_X86_64_32 against `.rodata.str1.1‘ can not be used when m_/usr/bin/ld: ./source/old/ss_h_hq.o: relocation r_

/usr/bin/ld: ./source/old/ss_h_hq.o: relocation r_x86_64_32 against `.rodata

今天编译源文件为main.cstr.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
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

Makefile

main:main.o str.o
	gcc $^ -o $@
clean:
	rm *.o main
  • 1
  • 2
  • 3
  • 4
导致该错误的一种可能原因

main.c中我写了switch case语句,删除之后程序就能正常编译。
实际上,cc编译命令在我的计算机上是clang编译器,从编译过程的输出可以看出:编译的时候使用的是clang编译器,链接的时候使用的是gcc编译器。
所以我猜测导致错误的原因是:编译和链接过程中使用了不同的编译器
具体细节可通过阅读《程序员的自我修养:链接,装载与库》这本书了解。

本文内容由网友自发贡献,转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/224454
推荐阅读
相关标签
  

闽ICP备14008679号