diff options
| author | Jakub Konka <kubkon@jakubkonka.com> | 2020-11-19 15:27:17 +0100 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2020-11-27 15:42:39 -0700 |
| commit | 375bab8460517f5d5ee02c161dc65ff1694132d7 (patch) | |
| tree | 02e428a21540cb8184f80271ef21b3c0a08a440c /src/link.zig | |
| parent | 12efefeba5a8128e0a79b4b04fad0d538c382e47 (diff) | |
| download | zig-375bab8460517f5d5ee02c161dc65ff1694132d7.tar.gz zig-375bab8460517f5d5ee02c161dc65ff1694132d7.zip | |
stage2 elf: refactor override_soname to soname
Diffstat (limited to 'src/link.zig')
| -rw-r--r-- | src/link.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/link.zig b/src/link.zig index e8a9f3d730..21022a760a 100644 --- a/src/link.zig +++ b/src/link.zig @@ -88,7 +88,7 @@ pub const Options = struct { subsystem: ?std.Target.SubSystem, linker_script: ?[]const u8, version_script: ?[]const u8, - override_soname: ?[]const u8, + soname: ?[]const u8, llvm_cpu_features: ?[*:0]const u8, /// Extra args passed directly to LLD. Ignored when not linking with LLD. extra_lld_args: []const []const u8, |
