From 6df01ab8ab8509b04f86d7da069ec2d25eb31bf9 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sat, 1 May 2021 18:05:23 -0400 Subject: sim: switch config.h usage to defs.h The defs.h header will take care of including the various config.h headers. For now, it's just config.h, but we'll add more when we integrate gnulib in. This header should be used instead of config.h, and should be the first include in every .c file. We won't rely on the old behavior where we expected files to include the port's sim-main.h which then includes the common sim-basics.h which then includes config.h. We have a ton of code that includes things before sim-main.h, and it sometimes needs to be that way. Creating a dedicated header avoids the ordering mess and implicit inclusion that shows up otherwise. --- sim/cris/rvdummy.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'sim/cris/rvdummy.c') diff --git a/sim/cris/rvdummy.c b/sim/cris/rvdummy.c index 788f8ed..b53e823 100644 --- a/sim/cris/rvdummy.c +++ b/sim/cris/rvdummy.c @@ -29,9 +29,8 @@ main (int argc, char *argv[]) } #else -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif +/* This must come before any other includes. */ +#include "defs.h" #include "getopt.h" #include "libiberty.h" -- cgit v1.1