您好我在eclipse中创建了一个Makefile项目,并使用现有的SConstruct文件导出源代码,该文件从cmd构建项目。我接受SConstruct中的两个参数 -
socns -Q mode=debug toolchain=x86
在构建设置中,我已经给出了
command = scons -Q mode=debug toolchain=x86
但是SConstruct文件中从不接受该参数。请告诉我如何在使用scons脚本构建eclipse项目时传递这两个参数,并传递两个参数。
#the buidling mode that should be passed by the use!
mode = ARGUMENTS.get('mode')
if not ( mode in ['debug','release']):
print "ERROR: mode must be debug/release"
Exit(1)
#the toolchain that should be passed by the user
#can be either x86 or arm
toolchain = ARGUMENTS.get('toolchain')
if not ( toolchain in ['x86','arm']):
print "ERROR: toolchain must be x86/arm"
Exit(1)