scons:让 glob 与构建目录配合得很好

发布于 2024-08-05 09:25:10 字数 720 浏览 8 评论 0原文

我想在子目录中构建所有 .c 文件。我想我会做这样的事情:

src/foo/SConscript contains:

import glob;
here = Dir('.');
sourcefiles_raw = glob.glob(here.path+'/*.c');
print(sourcefiles_raw);
# print them for debugging
# ... then build them (in the process, making scons aware of dependencies)

src/SConscript contains:

SConscript(['foo/SConscript']);

SConstruct contains:

SConscript(['src/SConscript'],build_dir='build');

但它打印 [],因为 glob.glob() 在目录 build/foo 中运行,然后 scons 才能决定需要从 src 复制哪些源文件/foobuild/foo

我该如何解决这个问题?

I would like to build all .c files in a subdirectory. I figured I would do something like this:

src/foo/SConscript contains:

import glob;
here = Dir('.');
sourcefiles_raw = glob.glob(here.path+'/*.c');
print(sourcefiles_raw);
# print them for debugging
# ... then build them (in the process, making scons aware of dependencies)

src/SConscript contains:

SConscript(['foo/SConscript']);

SConstruct contains:

SConscript(['src/SConscript'],build_dir='build');

But it prints [], since glob.glob() runs in the directory build/foo before scons can decide which sourcefiles need to be copied from src/foo to build/foo.

How can I solve this problem?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

等数载,海棠开 2024-08-12 09:25:10

没关系,看来你应该(RTFM )并使用 scons 的 Glob() 而不是 glob.glob()

never mind, it seems you're supposed to (RTFM) and use scons's Glob() rather than glob.glob().

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文