|
@@ -1,15 +1,10 @@
|
|
-Import('rtconfig')
|
|
|
|
from building import *
|
|
from building import *
|
|
|
|
|
|
-if GetDepend('RT_USING_NEWLIB') and rtconfig.CROSS_TOOL != 'gcc':
|
|
|
|
- print '================ERROR============================'
|
|
|
|
- print 'Please use GNU GCC compiler if using newlib'
|
|
|
|
- print '================================================='
|
|
|
|
- exit(0)
|
|
|
|
-
|
|
|
|
|
|
+src = Glob('*.c')
|
|
cwd = GetCurrentDir()
|
|
cwd = GetCurrentDir()
|
|
-src = Glob('*.c')
|
|
|
|
|
|
+
|
|
CPPPATH = [cwd]
|
|
CPPPATH = [cwd]
|
|
|
|
+CPPDEFINES = ['RT_USING_NEWLIB']
|
|
|
|
|
|
# link with libc and libm:
|
|
# link with libc and libm:
|
|
# libm is a frequently used lib. Newlib is compiled with -ffunction-sections in
|
|
# libm is a frequently used lib. Newlib is compiled with -ffunction-sections in
|
|
@@ -17,7 +12,7 @@ CPPPATH = [cwd]
|
|
# been referenced. So setting this won't result in bigger text size.
|
|
# been referenced. So setting this won't result in bigger text size.
|
|
LIBS = ['c', 'm']
|
|
LIBS = ['c', 'm']
|
|
|
|
|
|
-group = DefineGroup('newlib', src, depend = ['RT_USING_NEWLIB'],
|
|
|
|
- CPPPATH = CPPPATH, LIBS = LIBS)
|
|
|
|
|
|
+group = DefineGroup('newlib', src, depend = ['RT_USING_LIBC'],
|
|
|
|
+ CPPPATH = CPPPATH, CPPDEFINES = CPPDEFINES, LIBS = LIBS)
|
|
|
|
|
|
Return('group')
|
|
Return('group')
|