remove RT_USING_MINILIBC definitions in building script.
git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1285 bbd45198-f89e-11dd-88c7-29a3b14d5316
This commit is contained in:
parent
4853d4f54a
commit
397efc1252
|
@ -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)
|
||||
|
||||
|
|
|
@ -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'
|
||||
|
|
Loading…
Reference in New Issue