相同的源代码如何生成不同平台的二进制文件?
许多多平台应用程序似乎都有共同的源代码。构建如何生成特定于平台的二进制文件?
是否可以在 Linux 或 Mac 上构建 Windows 二进制文件?
Many multi-platform applications seem to have common source code. How do builds generate platform specific binaries?
Is it possible to build say, a windows binary on linux or mac?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您有适当的交叉编译器和库,这是可能的。例如,许多在 Linux 和 Windows 上都可用的程序使用 Windows 上的 MinGW 工具链,其中包括一个使用 Win32 函数模拟 POSIX 函数的库。
It's possible if you have an appropriate cross-compiler and libraries. For example, many programs which are available on both Linux and Windows use the MinGW toolchain on Windows, which includes a library that emulates POSIX functions using Win32 functions.
编译二进制文件以运行的平台取决于编译器,通常可以让编译器针对目标系统进行编译。为此,是的,通常可以为您正在运行的系统以外的系统进行编译。尽管您通常最好在该系统上为目标系统进行编译。
The platform a binary is compiled to run on depends on the compiler and generally, one can have the compiler compile for a target system. To that end, yes it is generally possible to compile for a system other than the one you are running on. Though you are usually better off compiling for a target system on that system.