From fb0be297227805cd5cd25ab72441ba067db533db Mon Sep 17 00:00:00 2001 From: Rui Ueyama Date: Sun, 28 Feb 2021 21:03:13 +0900 Subject: [PATCH] Ignore -( and -) --- commandline.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/commandline.cc b/commandline.cc index 185c5097..65385128 100644 --- a/commandline.cc +++ b/commandline.cc @@ -329,6 +329,8 @@ Config parse_nonpositional_args(std::span args, } else if (read_flag(args, "eh-frame-hdr")) { } else if (read_flag(args, "start-group")) { } else if (read_flag(args, "end-group")) { + } else if (read_flag(args, "(")) { + } else if (read_flag(args, ")")) { } else if (read_flag(args, "fatal-warnings")) { } else if (read_flag(args, "disable-new-dtags")) { } else if (read_flag(args, "as-needed")) {