2011-10-08 21:02:22 +08:00
|
|
|
Import('rtconfig')
|
|
|
|
from building import *
|
|
|
|
|
2011-10-10 20:45:38 +08:00
|
|
|
if GetDepend('RT_USING_NEWLIB') and rtconfig.CROSS_TOOL != 'gcc':
|
2011-10-08 21:02:22 +08:00
|
|
|
print '================ERROR============================'
|
|
|
|
print 'Please use GNU GCC compiler if using newlib'
|
|
|
|
print '================================================='
|
|
|
|
exit(0)
|
|
|
|
|
|
|
|
cwd = GetCurrentDir()
|
|
|
|
src = Glob('*.c')
|
|
|
|
CPPPATH = [cwd]
|
|
|
|
|
|
|
|
group = DefineGroup('newlib', src, depend = ['RT_USING_NEWLIB'], CPPPATH = CPPPATH)
|
|
|
|
|
|
|
|
Return('group')
|