diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2020-09-21 21:42:27 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2020-09-21 21:42:27 -0700 |
| commit | 974333faaf70eb67b78d3fa83bdc92e91379631a (patch) | |
| tree | f7f59ef4df3bc2390ff2d06af25fba213f9fc9ce /src/link.zig | |
| parent | 0c70bb4fce8b0460f86ed218f54ba31b291f2bfb (diff) | |
| download | zig-974333faaf70eb67b78d3fa83bdc92e91379631a.tar.gz zig-974333faaf70eb67b78d3fa83bdc92e91379631a.zip | |
stage2: fix linking libc trying to depend on itself
Diffstat (limited to 'src/link.zig')
| -rw-r--r-- | src/link.zig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/link.zig b/src/link.zig index 3ec81715e4..71d49286ba 100644 --- a/src/link.zig +++ b/src/link.zig @@ -64,6 +64,7 @@ pub const Options = struct { verbose_link: bool = false, dll_export_fns: bool, error_return_tracing: bool, + is_compiler_rt_or_libc: bool, gc_sections: ?bool = null, allow_shlib_undefined: ?bool = null, linker_script: ?[]const u8 = null, |
