我将AVR C源代码编译为目标文件。这些对象包含调试符号:
~ avr-nm code.c.o:
00000000 T ClockInit32MhzXtal
00000000 T CopyDataToSensors
00000000 T FindSensors
U I2CInitMaster
00000000 T PC_UsartInit
00000000 T ReadFromSensorSettings
00000000 T ResetAndAlignSampleClock
00000000 T SampleClockTimerInit
00000000 T SendDataToPC
...
将所有文件链接到单个文件时,虽然我指定了-g选项,但这些符号似乎丢失了:
~ /usr/local/bin/avr-gcc -O1 -lm -Wall -Wstrict-prototypes -Wl,--gc-sections -Wl,-g -std=gnu99 -funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums -ffunction-sections -fdata-sections -g -Wl,-search_paths_first -Wl,-headerpad_max_install_names -DF_CPU=32000000 -mmcu=atxmega128a1u file1.c.o file2.c.o -o program.elf
/usr/local/opt/avr-binutils/bin/avr-ld: warning: cannot find entry symbol arch_paths_first; defaulting to 0000000000000000
~ avr-nm program.elf
avr-nm: program.elf: no symbols
这怎么可能?链接器不应该在链接文件中创建带有调试信息的新符号表吗?
avr-gcc: gcc version 4.9.3 (GCC)
avr-ld: GNU ld (GNU Binutils) 2.25
答案 0 :(得分:2)
-Wl,-search_paths_first
标志。然而,它不是有效的avr-gcc标志,而是典型的OS X标志。编译器试图找到第一个现有的匹配-Wl,-s
。即剥离符号。