在eclipse中编译arduino时链接器分段错误

时间:2015-04-04 21:30:01

标签: c++ eclipse arduino

我正在尝试在Eclipse中构建arduino代码。我能够很好地构建ArduinoCore。但是在构建应用程序时,我在链接过程中遇到了分段错误。

Building target: TestAVR.elf
Invoking: AVR C++ Linker
avr-gcc –cref -s -Os -o”TestAVR.elf” ./src/main.o -lArduinoCore -lm -Wl,-Map,TestAVR.map,–cref -mrelax -Wl,–gc-sections -L/home/harsh/workspace/avr/ArduinoCore/Release -mmcu=atmega328p
collect2: ld terminated with signal 11 [Segmentation fault], core dumped
make: *** [TestAVR.elf] Error 1
Binutils is the latest version

所有工具似乎都是最新的。库是否未正确构建或链接器存在问题?

1 个答案:

答案 0 :(得分:0)

更改了链接器命令
avr-gcc –cref -s -Os -o”TestAVR.elf” ./src/main.o -lArduinoCore -lm -Wl,-Map,TestAVR.map,–cref -mrelax -Wl,–gc-sections -L/workspace/avr/ArduinoCore/Release -mmcu=atmega328p

avr-g++

它工作正常。