diff options
author | Michael Forney <mforney@mforney.org> | 2021-09-06 17:40:05 -0700 |
---|---|---|
committer | Michael Forney <mforney@mforney.org> | 2021-09-06 17:40:05 -0700 |
commit | 724b0c2e9d79d09c7fbda7d75119345263b9d0e8 (patch) | |
tree | e03bf9cdb4b210cbbdfdc2f6903544cebf56c927 | |
parent | e64d53164e373a695bfe4b5cd8eb052a0071c42d (diff) | |
download | cproc-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |