aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp
index cd45d40e5f..4d2775d75a 100644
--- 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;