diff options
author | Michael Forney <mforney@mforney.org> | 2019-04-14 00:39:14 -0700 |
---|---|---|
committer | Michael Forney <mforney@mforney.org> | 2019-04-14 00:39:14 -0700 |
commit | c662950252c041e01b64b829921cb5e79a2e2bb6 (patch) | |
tree | 88a760372100334a6bd0f8815d00047e5d0fe610 | |
parent | 44c0cbd2080fce59bffe8b91f4ec44512710f2c5 (diff) | |
download | cproc-c662950252c041e01b64b829921cb5e79a2e2bb6.tar.xz |
Define macros indicating missing optional features
-rw-r--r-- | config.def.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h index 99b1360..43b9f54 100644 --- a/config.def.h +++ b/config.def.h @@ -14,6 +14,11 @@ static char *endfiles[] = { static char *preprocesscmd[] = { "cpp", "-P", + /* we don't yet support these optional features */ + "-D", "__STDC_NO_ATOMICS__", + "-D", "__STDC_NO_COMPLEX__", + "-D", "__STDC_NO_VLA__", + /* specify the GNU C extensions we support */ "-U", "__GNUC__", "-D", "__GNUC__=3", "-U", "__GNUC_MINOR__", "-D", "__GNUC_MINOR__=3", |