我最近发现了zig,发现它非常有趣。我现在正在尝试学习如何将zig用作交叉编译器,并且以下内容可以构建并运行良好(在Windows上)

zig cc -Wno-everything src/ctest.c

但是,当我使用build-exe命令或构建脚本时,无法找到并链接(Windows)libc
c:\zigctest>zig build

Zig is unable to provide a libc for the chosen target 'x86_64-unknown-windows-msvc'.
The target is non-native, so Zig also cannot use the native libc installation.
Choose a target which has a libc available, or provide a libc installation text file.
See `zig libc --help` for more details.
The following command exited with error code 1:
c:\zigctest\zig.exe build-exe --library c --c-source -Wno-everything C:\zigctest\src\ctest.c --cache-dir C:\zigctest\zig-cache --name ctest -target x86_64-windows-msvc --cache on
exec failed
C:\zigctest\lib\zig\std\build.zig:768:36: 0x7ff76fece654 in std.build.Builder::std.build.Builder.exec (build.obj)
                    std.debug.panic("exec failed")
...

如果我可以看到zig cc的真正功能,也许我可以弄清楚(但zig cc似乎不允许--verbose-cc标志)。或者如何在Windows上让Zig与msvc(或任何其他可运行的libc)链接?为了完整起见,build.zig脚本是有效的:
...
const cflags = [][]const u8{
"-Wno-everything",
};

const exe = b.addExecutable("ctest", null);
exe.linkSystemLibrary("c");
exe.setBuildMode(mode);
exe.setTarget(builtin.Arch.x86_64, .windows, .msvc);
exe.addCSourceFile("src/ctest.c",cflags);
...

最佳答案

这是与此相关的问题:https://github.com/ziglang/zig/issues/514

一旦实现了此问题的Windows libc部分,您的示例就可以使用。在此之前,要链接libc的Windows代码的交叉编译将需要一个交叉编译环境。

09-16 03:59