• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

在Mac上针对Windows的交叉编译

用户头像
it1352
帮助1

问题说明

我可以在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.

正确答案

#1

这些说明在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

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tanhcfhebh
系列文章
更多 icon
同类精品
更多 icon
继续加载