这是我在 github 上的项目。
这是我的 SConstruct 文件:
SConscript('main.scons', variant_dir = 'build', duplicate = 0)
这是我的 main.scons 文件:
import sys
import os
import fnmatch
def find_source_files(directory, ext = "cpp"):
matches = []
for root, dirnames, filenames in os.walk(directory):
for filename in fnmatch.filter(filenames, '*.' + ext):
matches.append(os.path.join(root, filename))
return matches
if __name__ == '__main__':
for f in find_source_files('src'):
print f
else:
Program(target = 'main.bin', source = find_source_files('src'))
这是我运行它时得到的结果:
bitcycle @ cypher ~/git/IeiuniumTela $ find $(pwd) -name "*.bin" -or -name "*.o" -exec rm {} \;; scons; find $(pwd) -name "*.bin" -or -name "*.o"
scons: Reading SConscript files ...
scons: done reading SConscript files.
scons: Building targets ...
scons: building associated VariantDir targets: build
gcc -o build/main.bin
gcc: fatal error: no input files
compilation terminated.
scons: *** [build/main.bin] Error 4
scons: building terminated because of errors.
以下是我运行“python main.scons”来测试它时发生的情况:
bitcycle @ cypher ~/git/IeiuniumTela $ python main.scons
src/main.cpp
我很难理解为什么它找不到我的源文件。这里有什么建议或想法吗?
[更新]从邮件列表中获得一些好的指导后,我发现这对我来说“足够好”。
/S构造: SConscript('src/main.scons', variant_dir = 'build', duplicate = 0)
/src/main.scons: Program(target = 'main.bin', source = Glob('*.cpp'))
请参阅 github 存储库以获取完整的源代码树。为了完整起见,我还在 repo 中添加了一个空的构建目录。我觉得有趣的是:
一个。在这个用于发现源的构建工具的上下文中,SCons 的 Glob 版本不是递归的。我希望递归发现选项是首选。:(
湾。我需要将 scons 文件放在与源文件相同的目录中(这很烦人)。
C。打印语句显然有效,但 sys.stdout.write 没有(来自 python 模块)。