1
1
mirror of https://github.com/rui314/mold.git synced 2024-12-27 10:23:41 +03:00

Ignore -( and -)

This commit is contained in:
Rui Ueyama 2021-02-28 21:03:13 +09:00
parent 12abde58e6
commit fb0be29722

View File

@ -329,6 +329,8 @@ Config parse_nonpositional_args(std::span<std::string_view> 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")) {