diff options
Diffstat (limited to 'gcc/errors.c')
-rw-r--r-- | gcc/errors.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gcc/errors.c b/gcc/errors.c index be38b1f..a6a30fe 100644 --- a/gcc/errors.c +++ b/gcc/errors.c @@ -21,10 +21,11 @@ along with GCC; see the file COPYING3. If not see in the generator programs; the compiler has a more elaborate suite of diagnostic printers, found in diagnostic.c. */ -#ifdef GENERATOR_FILE -#include "bconfig.h" -#else +#ifdef HOST_GENERATOR_FILE #include "config.h" +#define GENERATOR_FILE 1 +#else +#include "bconfig.h" #endif #include "system.h" #include "errors.h" |