diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2023-12-04 21:56:29 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2024-01-01 17:51:18 -0700 |
| commit | 77420af9d01b1932a583fdcbfa169f2eb2b7c221 (patch) | |
| tree | dfaec3c2eba04fe64c0f77e27ab423d1226ddbed /src/link.zig | |
| parent | ce94c28e53e706e506d4c95c25c8bf99e7a597eb (diff) | |
| download | zig-77420af9d01b1932a583fdcbfa169f2eb2b7c221.tar.gz zig-77420af9d01b1932a583fdcbfa169f2eb2b7c221.zip | |
compiler: get the dynamic linker from the target
instead of passing it to Compilation separately and storing it
separately in the linker options.
Diffstat (limited to 'src/link.zig')
| -rw-r--r-- | src/link.zig | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/link.zig b/src/link.zig index 09669f4dbe..1ad66eaf7a 100644 --- a/src/link.zig +++ b/src/link.zig @@ -103,7 +103,6 @@ pub const Options = struct { root_name: [:0]const u8, /// Not every Compilation compiles .zig code! For example you could do `zig build-exe foo.o`. module: ?*Module, - dynamic_linker: ?[]const u8, /// The root path for the dynamic linker and system libraries (as well as frameworks on Darwin) sysroot: ?[]const u8, /// Used for calculating how much space to reserve for symbols in case the binary file |
