在 SCons 中运行命令而无需依赖

发布于 2024-11-29 19:05:55 字数 107 浏览 1 评论 0原文

我想在 SCons 中运行一个没有任何输入/输出文件的命令(实际上输入和输出是同一个文件)。目前我只是用 subprocess.Popen 手动运行它,但是有没有更 SConsy 的方法来做到这一点?

I want to run a command in SCons which doesn't have any input/output files (actually the input and output are the same file). At the moment I am just manually running it with subprocess.Popen but is there a more SConsy way of doing it?

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

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

发布评论

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

评论(1

一瞬间的火花 2024-12-06 19:05:55

您可以使用 Command 函数来运行任何外部通过 Popen 运行命令,并且可以使用 AlwaysBuild 函数确保您的命令始终运行即使目标文件存在。 Scons 不喜欢依赖循环,因此将源列表留空。

myfile = env.Command('myfile.out', [], 'echo Hello world > $TARGETS')
env.AlwaysBuild(myfile)

scons wiki 还有一个 PhonyTargets 的配方,可以轻松设置许多简单的命令。

You can use the Command function to run whatever external command you run via Popen, and you can use the AlwaysBuild function to ensure your command is always run even if the target file exists. Scons doesn't like dependency cycles, so leave the source list empty.

myfile = env.Command('myfile.out', [], 'echo Hello world > $TARGETS')
env.AlwaysBuild(myfile)

The scons wiki also has a recipe for PhonyTargets which makes it easy to set up a lot of simple commands.

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