通过rt thread studio新建的裸工程,用vscode编译总是不能通过,试过各种手段都没得成功,报错如下,想请问一下怎么解决,总是在链接ctr0.o的时候出错。
LINK rt-thread.elf
c:/rt-threadstudio/repo/extract/toolchainsupportpackages/arm/gnutoolsfor_arm_embedded_processors/5.4.1/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/crt0.o: In function _start':
(.text+0x104): undefined reference to
__bss_start‘
c:/rt-threadstudio/repo/extract/toolchain_support_packages/arm/gnu_tools_for_arm_embedded_processors/5.4.1/bin/../lib/gcc/arm-none-eabi/5.4.1/../../../../arm-none-eabi/lib/crt0.o: In function _start':
(.text+0x108): undefined reference to
__bss_end‘
collect2.exe: error: ld returned 1 exit status
scons: * [rt-thread.elf] Error 1
scons: building terminated because of errors.
1:尝试把tool_chain改成 C:\SysGCC\arm-eabi\bin 或者
C:\RT-ThreadStudio\repo\Extract\ToolChain_Support_Packages\ARM\GNU_Tools_for_ARM_Embedded_Processors\5.4.1\bin
都不行。
2:也尝试过更换ctr0.o也不行。
3:尝试修改链接文件link.lds,在text中添加 bss_start = .; 倒是能通过,但编译出来的文件又不能正常运行。
请各位英雄帮忙出个主意,在此拜谢。
modified by rtthread.studio.vscode
DEVICE = ‘ -mcpu=cortex-m7 -mthumb -ffunction-sections -fdata-sections’
CFLAGS = DEVICE + ‘ -Dgcc’
AFLAGS = ‘ -c’ + DEVICE + ‘ -x assembler-with-cpp -Wa,-mimplicit-it=thumb ‘
LFLAGS = DEVICE + ‘ -Wl,—gc-sections,-Map=rtthread.map,-cref,-u,Reset_Handler -T linkscripts//STM32H743ZGTx//link.lds’
CFLAGS += ‘ -O0 -gdwarf-2 -g’
AFLAGS += ‘ -gdwarf-2’
CXXFLAGS = CFLAGS
POST_ACTION = OBJCPY + ‘ -O binary $TARGET rtthread.bin\n’ + SIZE + ‘ $TARGET \n’
果然是这个py脚本的问题,已经搞定,谢谢!