From 397efc12520a07d6fe113a656ca1a7d5e9ff15de Mon Sep 17 00:00:00 2001 From: "bernard.xiong" Date: Mon, 21 Feb 2011 06:58:28 +0000 Subject: [PATCH] remove RT_USING_MINILIBC definitions in building script. git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1285 bbd45198-f89e-11dd-88c7-29a3b14d5316 --- bsp/lm3s/SConstruct | 2 +- bsp/stm3210/rtconfig.py | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/bsp/lm3s/SConstruct b/bsp/lm3s/SConstruct index 6a12d4efae..e8b767275d 100644 --- a/bsp/lm3s/SConstruct +++ b/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) diff --git a/bsp/stm3210/rtconfig.py b/bsp/stm3210/rtconfig.py index 413a5492ad..83813d45ef 100644 --- a/bsp/stm3210/rtconfig.py +++ b/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' -- GitLab