avr-ld:avr:51输入文件“ main.o”的体系结构与avr输出不兼容

时间:2018-07-24 18:08:31

标签: c linker avr atmega avr-gcc

我尝试在ATmega1284p上使用this Code/Guide

我遇到的问题是链接器不起作用,执行后得到以下错误消息(代码为ATmega88构建良好)

avr-ld  -o main.elf main.o  -g

avr-ld: avr:51 architecture of input file `main.o' is incompatible with avr output

有关信息

avr-gcc -v    
Using built-in specs.
    COLLECT_GCC=avr-gcc
    COLLECT_LTO_WRAPPER=/usr/lib/gcc/avr/4.8.2/lto-wrapper
    Target: avr
    Configured with: ../src/configure -v --enable-languages=c,c++ --prefix=/usr/lib --infodir=/usr/share/info --mandir=/usr/share/man --bindir=/usr/bin --libexecdir=/usr/lib --libdir=/usr/lib --enable-shared --with-system-zlib --enable-long-long --enable-nls --without-included-gettext --disable-libssp --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=avr
    Thread model: single

完整的构建说明

avr-gcc -std=c99 -g -Os -mmcu=atmega1284p -DF_CPU=8000000 -I. -DUART_BAUDRATE=57600 -Wstrict-prototypes -Wextra -ffunction-sections -fdata-sections -Wl,-gc-sections -o main.o -o main.o *.c 
avr-ld  -o main.elf main.o  -g
avr-objcopy -j .text -j .data -O ihex main.o main.hex
avr-size -C --mcu=atmega1284p main.elf

main.o的avr-objdump输出

avr-objdump -f main.o

main.o:     Dateiformat elf32-avr
Architektur: avr:51, Flags 0x00000112:
EXEC_P, HAS_SYMS, D_PAGED
Startadresse 0x00000000

1 个答案:

答案 0 :(得分:0)

有一种解决方法可以强制avr-ld使用链接描述文件。

解决方法

如果avr-ld给出错误:

avr-ld: avr:51 architecture of input file 'main.o' is incompatible with avr output

您必须使用选项-m添加所需的体系结构,例如:

avr-ld  -o main.elf main.o  -g -mavr51

如果这不起作用,则会出现以下错误:

avr-ld: cannot open linker script file ldscripts/avr51.xn: No such file or directory

您必须通过-T选项强制使用正确的链接描述文件:

avr-ld  -o main.elf main.o  -g -mavr51 -T /usr/lib/avr/ldscripts/avr51.xn

链接器应该工作。