在 Windows 上使用 gcc 进行 fork
我在 Windows 上的程序中使用 gcc (cygwin) 使用 fork。它在我的系统上运行良好。但我想在没有 cygwin 的其他系统上运行。我怎样才能做到这一点?
I am using fork in my program on windows using gcc (cygwin). It runs fine on my system. but I want to run on other systems which dont have cygwin. How can I do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的程序要求目标计算机上存在
cygwin1.dll
。确保这一点的一种方法是告诉您的用户至少需要安装最低限度的 Cygwin。另一种方法是根据其许可证条款分发 cygwin1.dll 和任何其他相关的 dll。 Cygwin 常见问题解答有一些有用的信息这。Your program requires the existence of
cygwin1.dll
on the target computer. One way to ensure this is to tell your users that at least a minimal installation of Cygwin is required. Another way is to distributecygwin1.dll
and any other related dll's in accordance with the terms of their licenses. The Cygwin FAQ has some useful information on this.