update rtconfig.py

git-svn-id: https://rt-thread.googlecode.com/svn/trunk@2090 bbd45198-f89e-11dd-88c7-29a3b14d5316
This commit is contained in:
yungchi@cs.nctu.edu.tw 2012-04-17 11:22:08 +00:00
parent 1eb7697c7b
commit 5b80e102e0
1 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ if CROSS_TOOL == 'gcc':
EXEC_PATH = 'C:/Program Files (x86)/CodeSourcery/Sourcery G++ Lite/bin'
elif CROSS_TOOL == 'keil':
PLATFORM = 'armcc'
EXEC_PATH = 'C:/Keil/ARM/BIN40'
EXEC_PATH = 'C:/Keil'
elif CROSS_TOOL == 'iar':
PLATFORM = 'iar'
IAR_PATH = 'C:/Program Files/IAR Systems/Embedded Workbench 6.0 Evaluation'
@ -47,7 +47,7 @@ if PLATFORM == 'gcc':
CFLAGS += ' -O0 -gdwarf-2'
AFLAGS += ' -gdwarf-2'
else:
CFLAGS += ' -O2'
CFLAGS += ' -O3'
POST_ACTION = OBJCPY + ' -O binary $TARGET rtthread.bin\n' + SIZE + ' $TARGET \n'