roc/crates/linker/src
jecaro d21ea2ea83
Fix zig_host_app on NixOS
That's a problem with the dynamic loader:
https://discourse.nixos.org/t/no-such-file-of-directory-when-trying-to-execute-binary-file/6150

When linking `libapp.so` with `host.zig`, zig puts in the binary the
standard path for the dynamic loader on linux:
`/lib64/ld-linux-x86-64.so.2`

However in NixOS, that file is somewhere else in the nix store (see:
https://nixos.wiki/wiki/Packaging/Binaries#The_Dynamic_Loader). Removing
the `-target` switch makes zig uses the host target for linking and puts
the right path to the dynamic loader in the resulting binary. As we want
to execute that binary file in this test, it makes sense to use the
default target anyway.

Note that this is relevant for the creation of the binary only. For the
creation of the object file, it doesn't really matter. But I removed the
`-target` switch as well there for consistency.

Fix #4180
2023-11-21 11:12:31 +01:00
..
generate_dylib Fix macos ld warning 2023-07-29 21:06:04 -04:00
elf.rs Fix zig_host_app on NixOS 2023-11-21 11:12:31 +01:00
lib.rs add preprocess host cli option 2023-11-06 09:31:22 -08:00
macho.rs auto clippy fixes 2023-07-10 18:27:08 +02:00
pe.rs cleanup CI, fix unrecognized --strip 2023-10-23 13:50:34 -07:00