Browse Source

[BSP] add -nostartfiles in lpc2148 bsp

Bernard Xiong 7 years ago
parent
commit
62e8b843c8
1 changed files with 2 additions and 2 deletions
  1. 2 2
      bsp/lpc2148/rtconfig.py

+ 2 - 2
bsp/lpc2148/rtconfig.py

@@ -39,9 +39,9 @@ if PLATFORM == 'gcc':
     OBJCPY = PREFIX + 'objcopy'
     OBJCPY = PREFIX + 'objcopy'
 
 
     DEVICE = ' -mcpu=arm7tdmi-s'
     DEVICE = ' -mcpu=arm7tdmi-s'
-    CFLAGS = DEVICE + ' -DRT_USING_MINILIBC'
+    CFLAGS = DEVICE
     AFLAGS = ' -c' + DEVICE + ' -x assembler-with-cpp'
     AFLAGS = ' -c' + DEVICE + ' -x assembler-with-cpp'
-    LFLAGS = DEVICE + ' -Wl,--gc-sections,-Map=rtthread-lpc214x.map,-cref,-u,_start -T lpc2148_rom.ld'
+    LFLAGS = DEVICE + ' -Wl,--gc-sections,-Map=rtthread-lpc214x.map,-cref,-u,_start -T lpc2148_rom.ld -nostartfiles'
 
 
     CPATH = ''
     CPATH = ''
     LPATH = ''
     LPATH = ''