标签: python scons
我想直接从Python使用Scons作为构建器,而不使用Sconstruct文件。
这个例子很简单。我有一个foo.c,我想使用/usr/local/bin/mycompiler来构建它。
foo.c
/usr/local/bin/mycompiler
我尝试做from scons import <tab>,但似乎没有导入。
from scons import <tab>
这可能吗?
答案 0 :(得分:1)
不。不支持使用模型。
如果您想从python启动SCons,请使用类似这样的命令(如果您的需求更复杂,则可以更复杂)
os.system("scons")