aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Forney <mforney@mforney.org>2019-02-13 21:53:45 -0800
committerMichael Forney <mforney@mforney.org>2019-02-13 21:53:45 -0800
commit451a0aabd721778f05bbf148fb40b3d707681bf1 (patch)
treee859698b1b21439022cd721ac3613c5e23406882
parentc3231333fd25b5768a236009866aeb24b071cfc9 (diff)
downloadcproc-451a0aabd721778f05bbf148fb40b3d707681bf1.tar.xz
driver: Ignore -std= and -pedantic
-rw-r--r--driver.c5
1 files changed, 5 insertions, 0 deletions
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();