commit
c397c91c1d
|
@ -21,7 +21,7 @@
|
||||||
# Date Author Notes
|
# Date Author Notes
|
||||||
# 2015-01-20 Bernard Add copyright information
|
# 2015-01-20 Bernard Add copyright information
|
||||||
# 2015-07-25 Bernard Add LOCAL_CCFLAGS/LOCAL_CPPPATH/LOCAL_CPPDEFINES for
|
# 2015-07-25 Bernard Add LOCAL_CCFLAGS/LOCAL_CPPPATH/LOCAL_CPPDEFINES for
|
||||||
# group definition.
|
# group definition.
|
||||||
#
|
#
|
||||||
|
|
||||||
import os
|
import os
|
||||||
|
@ -69,7 +69,7 @@ def stop_handling_includes(self, t=None):
|
||||||
d['include'] = self.do_nothing
|
d['include'] = self.do_nothing
|
||||||
d['include_next'] = self.do_nothing
|
d['include_next'] = self.do_nothing
|
||||||
d['define'] = self.do_nothing
|
d['define'] = self.do_nothing
|
||||||
|
|
||||||
PatchedPreProcessor = SCons.cpp.PreProcessor
|
PatchedPreProcessor = SCons.cpp.PreProcessor
|
||||||
PatchedPreProcessor.start_handling_includes = start_handling_includes
|
PatchedPreProcessor.start_handling_includes = start_handling_includes
|
||||||
PatchedPreProcessor.stop_handling_includes = stop_handling_includes
|
PatchedPreProcessor.stop_handling_includes = stop_handling_includes
|
||||||
|
@ -278,7 +278,7 @@ def PrepareBuilding(env, root_directory, has_libcpu=False, remove_components = [
|
||||||
'ua':('gcc', 'gcc'),
|
'ua':('gcc', 'gcc'),
|
||||||
'cdk':('gcc', 'gcc')}
|
'cdk':('gcc', 'gcc')}
|
||||||
tgt_name = GetOption('target')
|
tgt_name = GetOption('target')
|
||||||
|
|
||||||
if tgt_name:
|
if tgt_name:
|
||||||
# --target will change the toolchain settings which clang-analyzer is
|
# --target will change the toolchain settings which clang-analyzer is
|
||||||
# depend on
|
# depend on
|
||||||
|
@ -297,10 +297,10 @@ def PrepareBuilding(env, root_directory, has_libcpu=False, remove_components = [
|
||||||
and rtconfig.PLATFORM == 'gcc':
|
and rtconfig.PLATFORM == 'gcc':
|
||||||
AddDepend('RT_USING_MINILIBC')
|
AddDepend('RT_USING_MINILIBC')
|
||||||
|
|
||||||
AddOption('--genconfig',
|
AddOption('--genconfig',
|
||||||
dest = 'genconfig',
|
dest = 'genconfig',
|
||||||
action = 'store_true',
|
action = 'store_true',
|
||||||
default = False,
|
default = False,
|
||||||
help = 'Generate .config from rtconfig.h')
|
help = 'Generate .config from rtconfig.h')
|
||||||
if GetOption('genconfig'):
|
if GetOption('genconfig'):
|
||||||
from genconf import genconfig
|
from genconf import genconfig
|
||||||
|
@ -308,7 +308,7 @@ def PrepareBuilding(env, root_directory, has_libcpu=False, remove_components = [
|
||||||
exit(0)
|
exit(0)
|
||||||
|
|
||||||
if env['PLATFORM'] != 'win32':
|
if env['PLATFORM'] != 'win32':
|
||||||
AddOption('--menuconfig',
|
AddOption('--menuconfig',
|
||||||
dest = 'menuconfig',
|
dest = 'menuconfig',
|
||||||
action = 'store_true',
|
action = 'store_true',
|
||||||
default = False,
|
default = False,
|
||||||
|
@ -772,7 +772,7 @@ def EndBuilding(target, program = None):
|
||||||
if GetOption('target') == 'vsc':
|
if GetOption('target') == 'vsc':
|
||||||
from vsc import GenerateVSCode
|
from vsc import GenerateVSCode
|
||||||
GenerateVSCode(Env)
|
GenerateVSCode(Env)
|
||||||
|
|
||||||
if GetOption('target') == 'cdk':
|
if GetOption('target') == 'cdk':
|
||||||
from cdk import CDKProject
|
from cdk import CDKProject
|
||||||
CDKProject('project.cdkproj', Projects)
|
CDKProject('project.cdkproj', Projects)
|
||||||
|
@ -803,21 +803,43 @@ def SrcRemove(src, remove):
|
||||||
if not src:
|
if not src:
|
||||||
return
|
return
|
||||||
|
|
||||||
for item in src:
|
src_bak = src[:]
|
||||||
if type(item) == type('str'):
|
|
||||||
item_str = item
|
|
||||||
else:
|
|
||||||
item_str = item.rstr()
|
|
||||||
|
|
||||||
if os.path.isabs(item_str):
|
if type(remove) == type('str'):
|
||||||
item_str = os.path.relpath(item_str, GetCurrentDir())
|
if os.path.isabs(remove):
|
||||||
|
remove = os.path.relpath(remove, GetCurrentDir())
|
||||||
|
remove = os.path.normpath(remove)
|
||||||
|
|
||||||
|
for item in src_bak:
|
||||||
|
if type(item) == type('str'):
|
||||||
|
item_str = item
|
||||||
|
else:
|
||||||
|
item_str = item.rstr()
|
||||||
|
|
||||||
|
if os.path.isabs(item_str):
|
||||||
|
item_str = os.path.relpath(item_str, GetCurrentDir())
|
||||||
|
item_str = os.path.normpath(item_str)
|
||||||
|
|
||||||
if type(remove) == type('str'):
|
|
||||||
if item_str == remove:
|
if item_str == remove:
|
||||||
src.remove(item)
|
src.remove(item)
|
||||||
else:
|
else:
|
||||||
for remove_item in remove:
|
for remove_item in remove:
|
||||||
if item_str == str(remove_item):
|
remove_str = str(remove_item)
|
||||||
|
if os.path.isabs(remove_str):
|
||||||
|
remove_str = os.path.relpath(remove_str, GetCurrentDir())
|
||||||
|
remove_str = os.path.normpath(remove_str)
|
||||||
|
|
||||||
|
for item in src_bak:
|
||||||
|
if type(item) == type('str'):
|
||||||
|
item_str = item
|
||||||
|
else:
|
||||||
|
item_str = item.rstr()
|
||||||
|
|
||||||
|
if os.path.isabs(item_str):
|
||||||
|
item_str = os.path.relpath(item_str, GetCurrentDir())
|
||||||
|
item_str = os.path.normpath(item_str)
|
||||||
|
|
||||||
|
if item_str == remove_str:
|
||||||
src.remove(item)
|
src.remove(item)
|
||||||
|
|
||||||
def GetVersion():
|
def GetVersion():
|
||||||
|
|
Loading…
Reference in New Issue