Переглянути джерело

remove RT_USING_MINILIBC definitions in building script.

git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1285 bbd45198-f89e-11dd-88c7-29a3b14d5316
bernard.xiong 14 роки тому
батько
коміт
397efc1252
2 змінених файлів з 3 додано та 4 видалено
  1. 1 1
      bsp/lm3s/SConstruct
  2. 2 3
      bsp/stm3210/rtconfig.py

+ 1 - 1
bsp/lm3s/SConstruct

@@ -21,7 +21,7 @@ Export('rtconfig')
 # prepare building environment
 objs = PrepareBuilding(env, RTT_ROOT)
 
-objs.append(SConscript('bsp/lm3s/Libraries/SConscript'))
+objs = objs + SConscript(('bsp/lm3s/Libraries/SConscript'), variant_dir='build/bsp/Libraries', duplicate=0)
 
 env.Program(TARGET, objs)
 

+ 2 - 3
bsp/stm3210/rtconfig.py

@@ -29,7 +29,7 @@ if PLATFORM == 'gcc':
     OBJCPY = PREFIX + 'objcopy'
 
     DEVICE = ' -mcpu=cortex-m3 -mthumb -ffunction-sections -fdata-sections'
-    CFLAGS = DEVICE + ' -DRT_USING_MINILIBC'
+    CFLAGS = DEVICE
     AFLAGS = ' -c' + DEVICE + ' -x assembler-with-cpp'
     LFLAGS = DEVICE + ' -Wl,--gc-sections,-Map=rtthread-stm32.map,-cref,-u,Reset_Handler -T stm32_rom.ld'
 
@@ -100,13 +100,12 @@ elif PLATFORM == 'iar':
         
     AFLAGS = ''
     AFLAGS += ' -s+' 
-#    AFLAGS += ' -M<>' 
     AFLAGS += ' -w+' 
     AFLAGS += ' -r' 
     AFLAGS += ' --cpu Cortex-M3' 
     AFLAGS += ' --fpu None' 
     AFLAGS += ' -I"' + IAR_PATH + '/arm/INC"'
-    
+
     LFLAGS = ' --config stm32f10x_flash.icf'
     LFLAGS += ' --redirect _Printf=_PrintfTiny' 
     LFLAGS += ' --redirect _Scanf=_ScanfSmall'