zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit cf52f3f99a371fd4cb897afb2ed515ea00927808 (tree)
parent 11b50e3ad8781fd600961e80aad622c6f5616acc
Author: Andrew Kelley <andrew@ziglang.org>
Date:   Fri,  3 Apr 2020 13:44:56 -0400

zig cc: add -allow-shlib-undefined alias

Diffstat:
Msrc/main.cpp | 8++++++--
1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/src/main.cpp b/src/main.cpp @@ -833,9 +833,13 @@ static int main0(int argc, char **argv) { linker_gc_sections = OptionalBoolTrue; } else if (buf_eql_str(arg, "--no-gc-sections")) { linker_gc_sections = OptionalBoolFalse; - } else if (buf_eql_str(arg, "--allow-shlib-undefined")) { + } else if (buf_eql_str(arg, "--allow-shlib-undefined") || + buf_eql_str(arg, "-allow-shlib-undefined")) + { linker_allow_shlib_undefined = OptionalBoolTrue; - } else if (buf_eql_str(arg, "--no-allow-shlib-undefined")) { + } else if (buf_eql_str(arg, "--no-allow-shlib-undefined") || + buf_eql_str(arg, "-no-allow-shlib-undefined")) + { linker_allow_shlib_undefined = OptionalBoolFalse; } else if (buf_eql_str(arg, "-z")) { i += 1;