aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Forney <mforney@mforney.org>2021-09-06 17:40:05 -0700
committerMichael Forney <mforney@mforney.org>2021-09-06 17:40:05 -0700
commit724b0c2e9d79d09c7fbda7d75119345263b9d0e8 (patch)
treee03bf9cdb4b210cbbdfdc2f6903544cebf56c927
parente64d53164e373a695bfe4b5cd8eb052a0071c42d (diff)
downloadcproc-724b0c2e9d79d09c7fbda7d75119345263b9d0e8.tar.xz
driver: Pass -P through to the pre-processor
Since we no longer pass -P to cpp ourselves, we need to pass it through when it appears on the command-line instead of ignoring it.
-rw-r--r--driver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/driver.c b/driver.c
index 2fc7e4f..5f7d3ed 100644
--- a/driver.c
+++ b/driver.c
@@ -500,7 +500,7 @@ main(int argc, char *argv[])
output = nextarg(&argv);
break;
case 'P':
- /* ignore */
+ arrayaddptr(&stages[PREPROCESS].cmd, "-P");
break;
case 'S':
last = CODEGEN;