Browse Source

[BSP] Add '-nostartfiles' to link flags.

bernard 7 years ago
parent
commit
9463fd9ae8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      bsp/qemu-vexpress-a9/rtconfig.py

+ 1 - 1
bsp/qemu-vexpress-a9/rtconfig.py

@@ -37,7 +37,7 @@ if PLATFORM == 'gcc':
     CFLAGS = DEVICE + ' -Wall'
     CFLAGS = DEVICE + ' -Wall'
     AFLAGS = ' -c' + DEVICE + ' -x assembler-with-cpp -D__ASSEMBLY__'
     AFLAGS = ' -c' + DEVICE + ' -x assembler-with-cpp -D__ASSEMBLY__'
     LINK_SCRIPT = 'link.lds'
     LINK_SCRIPT = 'link.lds'
-    LFLAGS = DEVICE + ' -Wl,--gc-sections,-Map=rtthread.map,-cref,-u,system_vectors'+\
+    LFLAGS = DEVICE + ' -nostartfiles -Wl,--gc-sections,-Map=rtthread.map,-cref,-u,system_vectors'+\
                       ' -T %s' % LINK_SCRIPT
                       ' -T %s' % LINK_SCRIPT
 
 
     CPATH = ''
     CPATH = ''