在网络上运行的编译器
我问一个非常描述性的问题,所以如果可能的话建议我一些有用的链接或相关信息,关于如何继续开发网络编译器(在互联网或局域网上运行的编译器)
i am asking a quite descriptve question , so if possible suggest me some useful links or related information on how i can proceed to develop a network compiler (compiler that runs on the internet or LAN )
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这是您正在寻找的类型吗:http://distcc.samba.org/。
我找不到它,但我似乎提醒 Borland 也在做类似的事情......
Is this the type of thing you are looking for: http://distcc.samba.org/.
I can't find it, but I seem to reminder Borland doing something like this too...
您可能对 Open MPI 之类的东西感兴趣
you might be interested in something like Open MPI
AT&T
nmake
和coshell
可以轻松地通过网络分发编译作业。 它们可以在 Unix 上运行,也可以通过 AT&TU/Win 在 Windows 上运行。从这个问题来看还不是很清楚,但我希望这就是你想要的。 很难想象编译器知道它在网络上运行有什么好处。 您希望构建系统(例如,
nmake
)能够意识到这一点。 关注点分离...AT&T
nmake
andcoshell
make it easy to distributed compilation jobs over a network. They run on Unix and also on windows over AT&T U/Win.It's not very clear from the question, but I hope that's what you wanted. It's hard to imagine what benefit there is for the compiler to be aware that it's running on the network. You want the build system (e.g.,
nmake
) to be aware of that. Separation of concerns...