Motiejus Jakštys
Motiejus Jakštys

Reputation: 2999

does zig cc expose a linker (ld)?

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

Answers (1)

Motiejus Jakštys
Motiejus Jakštys

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

Related Questions