提交 14709082 编写于 作者: G goprife@gmail.com

fix the link bug in bsp/simulator

git-svn-id: https://rt-thread.googlecode.com/svn/trunk@2423 bbd45198-f89e-11dd-88c7-29a3b14d5316
上级 df249c46
......@@ -14,7 +14,7 @@ if os.getenv('RTT_RTGUI'):
else:
# set the rtgui root directory by hand
# empty string means use the RTGUI in svn
#RTT_RTGUI = os.path.normpath('F:/Project/git/rt-gui')
# RTT_RTGUI = os.path.normpath('F:/Project/git/rt-gui')
RTT_RTGUI =''
sys.path = sys.path + [os.path.join(RTT_ROOT, 'tools')]
......@@ -28,10 +28,7 @@ Export('RTT_ROOT')
Export('rtconfig')
libs = Split('''
kernel32
msvcrt
winmm
user32
gdi32
winspool
comdlg32
......
......@@ -58,17 +58,20 @@ elif PLATFORM == 'cl':
AR = PREFIX + 'cl'
LINK = PREFIX + 'cl'
AFLAGS = ''
CFLAGS = ''
LFLAGS = ''
CFLAGS = '/MT /ZI /Od /W 3 /WL '
#LFLAGS = '/SUBSYSTEM:WINDOWS /NODEFAULTLIB /MACHINE:X86 /DEBUG'
LFLAGS = '/SUBSYSTEM:CONSOLE /NODEFAULTLIB /MACHINE:X86 '
if BUILD == 'debug':
CFLAGS += ' /MTd'
LFLAGS += ' /DEBUG'
else:
CFLAGS += ' /MT'
LFLAGS += ''
CFLAGS += ' /ZI /Od /W 3 /WL '
LFLAGS += ' /SUBSYSTEM:CONSOLE /MACHINE:X86 '
CPATH = ''
LPATH = ''
if BUILD == 'debug':
CFLAGS += ' /DEBUG'
else:
CFLAGS += ''
POST_ACTION = ''
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册