diff options
author | Michael Forney <mforney@mforney.org> | 2019-02-13 21:53:45 -0800 |
---|---|---|
committer | Michael Forney <mforney@mforney.org> | 2019-02-13 21:53:45 -0800 |
commit | 451a0aabd721778f05bbf148fb40b3d707681bf1 (patch) | |
tree | e859698b1b21439022cd721ac3613c5e23406882 | |
parent | c3231333fd25b5768a236009866aeb24b071cfc9 (diff) | |
download | cproc-451a0aabd721778f05bbf148fb40b3d707681bf1.tar.xz |
driver: Ignore -std= and -pedantic
-rw-r--r-- | driver.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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(); |