Mercurial > hg > CbC > CbC_gcc
diff gcc/mkconfig.sh @ 67:f6334be47118
update gcc from gcc-4.6-20100522 to gcc-4.6-20110318
author | nobuyasu <dimolto@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 22 Mar 2011 17:18:12 +0900 (2011-03-22) |
parents | a06113de4d67 |
children | 04ced10e8804 |
line wrap: on
line diff
--- a/gcc/mkconfig.sh Tue May 25 18:58:51 2010 +0900 +++ b/gcc/mkconfig.sh Tue Mar 22 17:18:12 2011 +0900 @@ -1,6 +1,6 @@ #! /bin/sh -# Copyright (C) 2001, 2002, 2006, 2007 Free Software Foundation, Inc. +# Copyright (C) 2001, 2002, 2006, 2007, 2010 Free Software Foundation, Inc. # This file is part of GCC. # GCC is free software; you can redistribute it and/or modify @@ -63,6 +63,10 @@ # The first entry in HEADERS may be auto-FOO.h ; # it wants to be included even when not -DIN_GCC. +# Postpone including defaults.h until after the insn-* +# headers, so that the HAVE_* flags are available +# when defaults.h gets included. +postpone_defaults_h="no" if [ -n "$HEADERS" ]; then set $HEADERS case "$1" in auto-* ) @@ -73,27 +77,35 @@ if [ $# -ge 1 ]; then echo '#ifdef IN_GCC' >> ${output}T for file in "$@"; do - echo "# include \"$file\"" >> ${output}T + if test x"$file" = x"defaults.h"; then + postpone_defaults_h="yes" + else + echo "# include \"$file\"" >> ${output}T + fi done echo '#endif' >> ${output}T fi fi -# If this is tm.h, now include insn-constants.h and insn-flags.h only -# if IN_GCC is defined but neither GENERATOR_FILE nor USED_FOR_TARGET -# is defined. (Much of this is temporary.) +# If this is tm.h, now include insn-flags.h only if IN_GCC is defined +# but neither GENERATOR_FILE nor USED_FOR_TARGET is defined. (Much of +# this is temporary.) case $output in tm.h ) cat >> ${output}T <<EOF #if defined IN_GCC && !defined GENERATOR_FILE && !defined USED_FOR_TARGET -# include "insn-constants.h" # include "insn-flags.h" #endif EOF ;; esac +# If we postponed including defaults.h, add the #include now. +if test x"$postpone_defaults_h" = x"yes"; then + echo "# include \"defaults.h\"" >> ${output}T +fi + # Add multiple inclusion protection guard, part two. echo "#endif /* ${header_guard} */" >> ${output}T