You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
527 B
21 lines
527 B
5 days ago
|
from shutil import copy
|
||
|
from building import *
|
||
|
from gcc import *
|
||
|
Import('rtconfig')
|
||
|
|
||
|
src = []
|
||
|
cwd = GetCurrentDir()
|
||
|
CPPPATH = [cwd]
|
||
|
group = []
|
||
|
|
||
|
# sys/select.h does not exist in newlib 2.2.0 or lower version
|
||
|
if rtconfig.PLATFORM == 'gcc' and (CheckHeader(rtconfig, 'sys/select.h') == False):
|
||
|
try:
|
||
|
copy("../../../../common/nogcc/sys/select.h", "./sys/select.h") # copy from 'nogcc/sys/select.h'
|
||
|
except:
|
||
|
pass
|
||
|
|
||
|
group = DefineGroup('Compiler', src, depend = [''], CPPPATH = CPPPATH)
|
||
|
|
||
|
Return('group')
|