我正在尝试在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
所有工具似乎都是最新的。库是否未正确构建或链接器存在问题?
答案 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++
它工作正常。