gpt4 book ai didi

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

转载 作者:太空宇宙 更新时间:2023-11-04 04:16:32 29 4
gpt4 key购买 nike

我尝试使用 this Code/GuideATmega1284p 上。

我遇到的问题是链接器不工作,执行后出现以下错误消息(代码为 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

ma​​in.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

最佳答案

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

解决方法

如果 avr-ld 给出错误:

avr-ld: 输入文件 'main.o' 的 avr:51 架构与 avr 输出不兼容

您必须使用选项 -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

链接器应该可以工作。

关于c - avr-ld : avr:51 architecture of input file `main.o' is incompatible with avr output,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51505057/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com