diff options
author | Michael Forney <mforney@mforney.org> | 2019-02-28 17:28:16 -0800 |
---|---|---|
committer | Michael Forney <mforney@mforney.org> | 2019-02-28 17:28:16 -0800 |
commit | eb5b04cc93d00cdc65259d3943f21b9fb4587349 (patch) | |
tree | 050a134c4ec7bed8cace28dbfdae4d2398874493 | |
parent | 7c2089414f2d6476c093a08bb7305e72a89b552c (diff) | |
download | cproc-eb5b04cc93d00cdc65259d3943f21b9fb4587349.tar.xz |
Set __GNUC__=3 and __GNUC_MINOR__=3 by default
-rw-r--r-- | config.def.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/config.def.h b/config.def.h index 80a2193..a727662 100644 --- a/config.def.h +++ b/config.def.h @@ -15,7 +15,8 @@ static char *preprocesscmd[] = { "cpp", "-P", /* specify the GNU C extensions we support */ - "-U", "__GNUC__", "-D", "__GNUC__=4", + "-U", "__GNUC__", "-D", "__GNUC__=3", + "-U", "__GNUC_MINOR__", "-D", "__GNUC_MINOR__=3", /* prevent glibc from using statement expressions for assert */ "-D", "__STRICT_ANSI__", |