3

这是在 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.sconsProgram(target = 'main.bin', source = Glob('*.cpp'))

请参阅 github 存储库以获取完整的源代码树。为了完整起见,我还在 repo 中添加了一个空的构建目录。我觉得有趣的是:

一个。在这个用于发现源的构建工具的上下文中,SCons 的 Glob 版本不是递归的。我希望递归发现选项是首选。:(

湾。我需要将 scons 文件放在与源文件相同的目录中(这很烦人)。

C。打印语句显然有效,但 sys.stdout.write 没有(来自 python 模块)。

4

2 回答 2

0

可能是因为您的main.scons文件已经在src目录中,而您find_source_file实际上正在搜索src/src?当我将 scons 文件移动到顶层目录时,它为我找到了源代码。

更新: 经调查,variant_dir将工作目录设置为build,因此您find_source_files在其中查找文件build/src但一无所获。find_source_files从 SConstruct 文件调用或VariantDir()在 main.scons中使用可能会更好。

于 2013-03-11T00:24:33.830 回答
0

SCons 对相对目录路径的处理与 Python 不同,因此看到测试执行和 SCons 执行之间的差异我不会感到惊讶。通常在 SCons 中,所有内容都与根 SConstruct 脚本或 SConscript 脚本相关。

你的代码看起来是正确的,但是如何添加一些调试打印语句find_source_files()来找出到底发生了什么?

也许您打算find_source_files()稍后更广泛地使用该功能,但是对于一个源文件的简单情况,您似乎过于复杂了,您可以在 中使用以下内容main.scons

Program(target = 'main.bin', source = 'src/main.cpp')
于 2013-03-11T08:06:14.007 回答