|
@@ -15,6 +15,7 @@ TARGET = 'rtthread-mini2440.' + rtconfig.TARGET_EXT
|
|
|
env = Environment(tools = ['mingw'],
|
|
|
AS = rtconfig.AS, ASFLAGS = rtconfig.AFLAGS,
|
|
|
CC = rtconfig.CC, CCFLAGS = rtconfig.CFLAGS,
|
|
|
+ CXX = rtconfig.CXX,
|
|
|
AR = rtconfig.AR, ARFLAGS = '-rc',
|
|
|
LINK = rtconfig.LINK, LINKFLAGS = rtconfig.LFLAGS)
|
|
|
env.PrependENVPath('PATH', rtconfig.EXEC_PATH)
|
|
@@ -22,20 +23,25 @@ env.PrependENVPath('PATH', rtconfig.EXEC_PATH)
|
|
|
Export('RTT_ROOT')
|
|
|
Export('rtconfig')
|
|
|
|
|
|
-# prepare building environment
|
|
|
-objs = PrepareBuilding(env, RTT_ROOT)
|
|
|
+if rtconfig.PLATFORM == 'gcc':
|
|
|
+ start_obj = 'build/libcpu/' + rtconfig.ARCH + '/' + rtconfig.CPU + '/start_gcc.o',
|
|
|
+elif rtconfig.PLATFORM == 'armcc':
|
|
|
+ start_obj = 'build/libcpu/' + rtconfig.ARCH + '/' + rtconfig.CPU + '/start_rvds.o',
|
|
|
|
|
|
-if GetDepend('RT_USING_WEBSERVER'):
|
|
|
- objs = objs + SConscript(RTT_ROOT + '/components/net/webserver/SConscript', variant_dir='build/net/webserver', duplicate=0)
|
|
|
+# prepare building environment
|
|
|
+libs = PrepareBuilding(env, RTT_ROOT)
|
|
|
|
|
|
if GetDepend('RT_USING_RTGUI'):
|
|
|
- objs = objs + SConscript(RTT_ROOT + '/examples/gui/SConscript', variant_dir='build/examples/gui', duplicate=0)
|
|
|
+ libs = objs + SConscript(RTT_ROOT + '/examples/gui/SConscript', variant_dir='build/examples/gui', duplicate=0)
|
|
|
|
|
|
# libc testsuite
|
|
|
-# objs = objs + SConscript(RTT_ROOT + '/examples/libc/SConscript', variant_dir='build/examples/libc', duplicate=0)
|
|
|
+# libs = libs + SConscript(RTT_ROOT + '/examples/libc/SConscript', variant_dir='build/examples/libc', duplicate=0)
|
|
|
|
|
|
# build program
|
|
|
-env.Program(TARGET, objs)
|
|
|
+if GetDepend('RT_USING_NEWLIB'):
|
|
|
+ env.Program(target = TARGET, source = [start_obj, 'build/components/libc/newlib/syscalls.o', 'build/components/libc/newlib/libc.o'], LIBS = libs)
|
|
|
+else:
|
|
|
+ env.Program(target = TARGET, source = start_obj, LIBS = libs)
|
|
|
|
|
|
# end building
|
|
|
EndBuilding(TARGET)
|