diff options
author | Michael Forney <mforney@mforney.org> | 2022-07-12 12:02:01 -0700 |
---|---|---|
committer | Michael Forney <mforney@mforney.org> | 2022-07-12 12:02:01 -0700 |
commit | 83116cabc84ff3478ea19be38e8891d83a60acd6 (patch) | |
tree | 552b663fdb2fd06d09e8f9331dbc95089d892798 | |
parent | 5c51dc34eaeadebe9287489d0931870a996276e7 (diff) | |
download | cproc-83116cabc84ff3478ea19be38e8891d83a60acd6.tar.xz |
driver: Pass -iquote through to preprocessor
-rw-r--r-- | driver.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -432,7 +432,7 @@ main(int argc, char *argv[]) arrayaddptr(&stages[LINK].cmd, arg); } else if (strcmp(arg, "-emit-qbe") == 0) { last = COMPILE; - } else if (strcmp(arg, "-include") == 0 || strcmp(arg, "-idirafter") == 0 || strcmp(arg, "-isystem") == 0) { + } else if (strcmp(arg, "-include") == 0 || strcmp(arg, "-idirafter") == 0 || strcmp(arg, "-isystem") == 0 || strcmp(arg, "-iquote") == 0) { if (!--argc) usage(NULL); arrayaddptr(&stages[PREPROCESS].cmd, arg); |