avr -g ++编译因Make Error 1而失败

时间:2015-06-05 21:02:36

标签: eclipse makefile arduino avr avr-gcc

我正在尝试在Eclipse中编译Arduino代码。下面是构建日志。

make all 
Building file: ../test.cpp
Starting C++ compile
"/bin/avr-g++" -c -g -Os -w -fno-exceptions -ffunction-sections -fdata-sections -fno-threadsafe-statics -MMD -mmcu=atmega328p -DF_CPU=16000000L -DARDUINO=163 -DARDUINO_AVR_UNO -DARDUINO_ARCH_AVR     -I"/opt/arduino-1.6.3/hardware/arduino/avr/cores/arduino" -I"/opt/arduino-1.6.3/hardware/arduino/avr/variants/standard" -I/usr/lib/avr/include -MMD -MP -MF"test.cpp.d" -MT"test.cpp.d" -D__IN_ECLIPSE__=1 -x c++ "../test.cpp"  -o  "test.cpp.o"
as: unrecognized option '-mmcu=avr5'
make: *** [test.cpp.o] Error 1

怎么了? as: unrecognized option '-mmcu=avr5'是什么意思?它无法识别-mmcu选项?

1 个答案:

答案 0 :(得分:2)

错误消息来自汇编程序as。 AVR汇编程序avr-as确实接受-mmcu选项。也许Eclipse正在选择其他as而不是?

在makefile中使用"/bin/avr-g++"看起来很可疑。我认为您应该设置Eclipse以在正确的位置查找工具链,而无需在makefile命令中指定目录。