D 编程语言有 GNU Make 类型的程序吗?
或者在 Windows 上我想我可以使用批处理脚本?
Or on Windows I guess I could use a batch script?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
或者在 Windows 上我想我可以使用批处理脚本?
Or on Windows I guess I could use a batch script?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
Make 与语言无关:它与任何编程语言都同样有效(或不好,取决于您的观点)。
Make is language agnostic: it works equally well (or bad depending on your point of view) with any programming language.
我建议您检查 rdmd 实用程序,它是标准 dmd 发行版的一部分。 rdmd 获取您的主模块并从中推断所有传递依赖项。
I suggest you check the rdmd utility, which is part of the standard dmd distribution. rdmd takes your main module and infers all transitive dependencies from it.
Digital Mars D 编译器(您可以在此处找到)应该有在
DMD2\Windows\Bin
文件夹中make
程序执行您需要的操作。如果没有,请查看 C 编译器——我确信其中至少有一个可以与 DMD 配合使用。
The Digital Mars D compiler (which you can find here) should have a
make
program that does what you need, in theDMD2\Windows\Bin
folder.If it doesn't, take a look at the C compiler -- I'm sure that at least one of them has one that works with DMD.