我尝试在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
答案 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
链接器应该工作。