在 SCons 中运行命令而无需依赖
我想在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 Command 函数来运行任何外部通过 Popen 运行命令,并且可以使用 AlwaysBuild 函数确保您的命令始终运行即使目标文件存在。 Scons 不喜欢依赖循环,因此将源列表留空。
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.
The scons wiki also has a recipe for PhonyTargets which makes it easy to set up a lot of simple commands.