From eb5b04cc93d00cdc65259d3943f21b9fb4587349 Mon Sep 17 00:00:00 2001 From: Michael Forney Date: Thu, 28 Feb 2019 17:28:16 -0800 Subject: Set __GNUC__=3 and __GNUC_MINOR__=3 by default --- config.def.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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__", -- cgit v1.2.3