在Mac上针对Windows的交叉编译 [英] Cross compiling on mac for windows

查看:265
本文介绍了在Mac上针对Windows的交叉编译的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我可以在Mac上编译以便生成Windows二进制文件吗?与Windows DLL绑定?(我有一台Windows计算机可以从中复制它们)我该怎么做?clang和gcc是我可以使用的编译器.

Can I compile on mac so it will produce a windows binary? bind with windows dlls? (I have a windows machine to copy them from) How can I do so? clang and gcc are the compilers I can use.

推荐答案

这些说明在MacOS和Linux上均可使用,但我将从Mac的角度来提供它们.

These instructions will work on both MacOS and Linux, but I will provide them from a Mac perspective.

  1. 下载Docker
  2. 添加Windows dockcross

如果您不知道如何使用docker,则只需下载 Kitematic (链接到外部站点).

If you don't know how to use docker then just download Kitematic (Links to an external site.).

在Kitematic中,您只需单击"+ New"按钮,即可从Docker枢纽获取扩展坞映像.

From Kitematic you can simply click the "+New" button and get the dockcross image from the docker hub.

在Kitematic中下载映像后,单击左下方的"Docker CLI"按钮.这将为docker环境打开一个新的终端窗口设置.

After the image downloads in Kitematic, click the "Docker CLI" button in the bottom left. This will open a new terminal window setup for the docker environment.

在该终端窗口中:

cd到要构建的项目所在的目录,然后保存将运行docker容器并构建项目的shellscript:

cd to the directory with the project you want to build then save a shellscript that will run the docker container and build the project:

  1. docker运行--rm dockcross/windows-x86>./dockcross
  2. chmod + x ./dockcross
  3. ./dockcross make (假设您的项目使用makefile)
  1. docker run --rm dockcross/windows-x86 > ./dockcross
  2. chmod +x ./dockcross
  3. ./dockcross make (assuming your project uses a makefile)

有关更多示例和更多指导,请参阅码头接口文档.

See the dockcross documentation for more examples and further guidance.

dockcross使用MXE,因此您可以轻松地构建大多数项目,但是您可能需要安装其他 MXE软件包

dockcross uses MXE, so you can pretty easily build most projects, but you may need to install additional MXE packages

这篇关于在Mac上针对Windows的交叉编译的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆