diff --git a/bsp/lm3s/SConstruct b/bsp/lm3s/SConstruct index 6a12d4efae972747ad3906a46769e54ac0cecb36..e8b767275d7372fb0c2cf461bfa2c8154db054c6 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 413a5492adcd669daa5c7edd86d5c7fbc3c8a196..83813d45efbb9c826fc8f16a2aeaffe72d17f394 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'