Reputation: 2999
I am trying to compile xz with zig cc
on Linux without build tools except zig:
$ zig version
0.8.0-dev.1039+bea791b63
$ export CC="zig cc"
$ ./configure
<...>
checking for ld used by zig cc... no
configure: error: no acceptable ld found in $PATH
Which is true: system does not have a linker. And zig doesn't advertise one:
$ zig cc -print-prog-name=ld
ld
Can/does zig cc
provide a linker?
Upvotes: 2
Views: 1578
Reputation: 2999
zig ld.lld
for ELF. See this for other formats.
Also see https://github.com/ziglang/zig/issues/8755 for zig ld
.
Upvotes: 6