From 451a0aabd721778f05bbf148fb40b3d707681bf1 Mon Sep 17 00:00:00 2001 From: Michael Forney Date: Wed, 13 Feb 2019 21:53:45 -0800 Subject: driver: Ignore -std= and -pedantic --- driver.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/driver.c b/driver.c index 0ff8451..c59f383 100644 --- a/driver.c +++ b/driver.c @@ -322,6 +322,7 @@ main(int argc, char *argv[]) arrayaddptr(&inputs, arg); continue; } + /* TODO: use a binary search for these long parameters */ if (strcmp(arg, "-nostdlib") == 0) { flags.nostdlib = true; } else if (strcmp(arg, "-static") == 0) { @@ -335,6 +336,10 @@ main(int argc, char *argv[]) arrayaddptr(&phases[PREPROCESS].cmd, *++argv); } else if (strcmp(arg, "-pipe") == 0) { /* ignore */ + } else if (strncmp(arg, "-std=", 5) == 0) { + /* ignore */ + } else if (strcmp(arg, "-pedantic") == 0) { + /* ignore */ } else { if (arg[2] != '\0' && strchr("cESs", arg[1])) usage(); -- cgit v1.2.3