在 Windows 上交叉编译 XZ-5.X.X

Posted

技术标签:

【中文标题】在 Windows 上交叉编译 XZ-5.X.X【英文标题】:Cross-Compiling XZ-5.X.X on Windows 【发布时间】:2013-01-29 17:04:12 【问题描述】:

我正在尝试在 Windows 上交叉编译 xz-5.0.4。我已按照INSTALL-Windows.txt 中的说明进行操作,但收到错误消息

Initializing Automake:
checking for a BSD-compatible install... /bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether ln -s works... yes
checking for style of include used by make... GNU
checking for gcc... gcc
checking whether the C compiler works... no
configure: error: in `/c/devel/xz-5.0.4':
configure: error: C compiler cannot create executables
See `config.log' for more details

有人可以帮我找出问题吗?

【问题讨论】:

【参考方案1】:

你的 gcc 有问题:configure 无法通过编译 void 文件的简单测试。

按照文档中的说明安装 GCC,然后确保其二进制文件名为 gcc(通常 Windows 发行版更喜欢 gcc-4.4 之类的东西),如果没有 - 制作符号链接。还要确保它在 PATH 中。

从命令行尝试命令gcc test.c,其中test.c 是包含int main(void) return 0; 内容的文件——这是configure 通常检查编译器的方式。如果不行就让它工作,下次再配置。

【讨论】:

以上是关于在 Windows 上交叉编译 XZ-5.X.X的主要内容,如果未能解决你的问题,请参考以下文章

在linux上交叉编译c++到windows

windows上交叉编译go程序

qt5.4 在 linux for windows 上交叉编译

windows上交叉编译go程序

如何在 Ubuntu 上交叉编译 ARM 架构的 CGO 程序

在linux上交叉编译opencv踩过的坑