OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [mkconfig.sh] - Diff between revs 154 and 816

Only display areas with differences | Details | Blame | View Log

Rev 154 Rev 816
#! /bin/sh
#! /bin/sh
 
 
# Copyright (C) 2001, 2002, 2006, 2007 Free Software Foundation, Inc.
# Copyright (C) 2001, 2002, 2006, 2007 Free Software Foundation, Inc.
# This file is part of GCC.
# This file is part of GCC.
 
 
# GCC is free software; you can redistribute it and/or modify
# GCC is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3, or (at your option)
# the Free Software Foundation; either version 3, or (at your option)
# any later version.
# any later version.
 
 
# GCC is distributed in the hope that it will be useful,
# GCC is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
# GNU General Public License for more details.
 
 
# You should have received a copy of the GNU General Public License
# You should have received a copy of the GNU General Public License
# along with GCC; see the file COPYING3.  If not see
# along with GCC; see the file COPYING3.  If not see
# <http://www.gnu.org/licenses/>.
# <http://www.gnu.org/licenses/>.
 
 
 
 
# Generate gcc's various configuration headers:
# Generate gcc's various configuration headers:
# config.h, tconfig.h, bconfig.h, tm.h, and tm_p.h.
# config.h, tconfig.h, bconfig.h, tm.h, and tm_p.h.
# $1 is the file to generate.  DEFINES, HEADERS, and possibly
# $1 is the file to generate.  DEFINES, HEADERS, and possibly
# TARGET_CPU_DEFAULT are expected to be set in the environment.
# TARGET_CPU_DEFAULT are expected to be set in the environment.
 
 
if [ -z "$1" ]; then
if [ -z "$1" ]; then
    echo "Usage: DEFINES='list' HEADERS='list' \\" >&2
    echo "Usage: DEFINES='list' HEADERS='list' \\" >&2
    echo "  [TARGET_CPU_DEFAULT='default'] mkconfig.sh FILE" >&2
    echo "  [TARGET_CPU_DEFAULT='default'] mkconfig.sh FILE" >&2
    exit 1
    exit 1
fi
fi
 
 
output=$1
output=$1
rm -f ${output}T
rm -f ${output}T
 
 
# This converts a file name into header guard macro format.
# This converts a file name into header guard macro format.
hg_sed_expr='y,abcdefghijklmnopqrstuvwxyz./,ABCDEFGHIJKLMNOPQRSTUVWXYZ__,'
hg_sed_expr='y,abcdefghijklmnopqrstuvwxyz./,ABCDEFGHIJKLMNOPQRSTUVWXYZ__,'
header_guard=GCC_`echo ${output} | sed -e ${hg_sed_expr}`
header_guard=GCC_`echo ${output} | sed -e ${hg_sed_expr}`
 
 
# Add multiple inclusion protection guard, part one.
# Add multiple inclusion protection guard, part one.
echo "#ifndef ${header_guard}" >> ${output}T
echo "#ifndef ${header_guard}" >> ${output}T
echo "#define ${header_guard}" >> ${output}T
echo "#define ${header_guard}" >> ${output}T
 
 
# A special test to ensure that build-time files don't blindly use
# A special test to ensure that build-time files don't blindly use
# config.h.
# config.h.
if test x"$output" = x"config.h"; then
if test x"$output" = x"config.h"; then
  echo "#ifdef GENERATOR_FILE" >> ${output}T
  echo "#ifdef GENERATOR_FILE" >> ${output}T
  echo "#error config.h is for the host, not build, machine." >> ${output}T
  echo "#error config.h is for the host, not build, machine." >> ${output}T
  echo "#endif" >> ${output}T
  echo "#endif" >> ${output}T
fi
fi
 
 
# Define TARGET_CPU_DEFAULT if the system wants one.
# Define TARGET_CPU_DEFAULT if the system wants one.
# This substitutes for lots of *.h files.
# This substitutes for lots of *.h files.
if [ "$TARGET_CPU_DEFAULT" != "" ]; then
if [ "$TARGET_CPU_DEFAULT" != "" ]; then
    echo "#define TARGET_CPU_DEFAULT ($TARGET_CPU_DEFAULT)" >> ${output}T
    echo "#define TARGET_CPU_DEFAULT ($TARGET_CPU_DEFAULT)" >> ${output}T
fi
fi
 
 
# Provide defines for other macros set in config.gcc for this file.
# Provide defines for other macros set in config.gcc for this file.
for def in $DEFINES; do
for def in $DEFINES; do
    echo "#ifndef $def" | sed 's/=.*//' >> ${output}T
    echo "#ifndef $def" | sed 's/=.*//' >> ${output}T
    echo "# define $def" | sed 's/=/ /' >> ${output}T
    echo "# define $def" | sed 's/=/ /' >> ${output}T
    echo "#endif" >> ${output}T
    echo "#endif" >> ${output}T
done
done
 
 
# The first entry in HEADERS may be auto-FOO.h ;
# The first entry in HEADERS may be auto-FOO.h ;
# it wants to be included even when not -DIN_GCC.
# it wants to be included even when not -DIN_GCC.
if [ -n "$HEADERS" ]; then
if [ -n "$HEADERS" ]; then
    set $HEADERS
    set $HEADERS
    case "$1" in auto-* )
    case "$1" in auto-* )
        echo "#include \"$1\"" >> ${output}T
        echo "#include \"$1\"" >> ${output}T
        shift
        shift
        ;;
        ;;
    esac
    esac
    if [ $# -ge 1 ]; then
    if [ $# -ge 1 ]; then
        echo '#ifdef IN_GCC' >> ${output}T
        echo '#ifdef IN_GCC' >> ${output}T
        for file in "$@"; do
        for file in "$@"; do
            echo "# include \"$file\"" >> ${output}T
            echo "# include \"$file\"" >> ${output}T
        done
        done
        echo '#endif' >> ${output}T
        echo '#endif' >> ${output}T
    fi
    fi
fi
fi
 
 
# If this is tm.h, now include insn-constants.h and insn-flags.h only
# 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
# if IN_GCC is defined but neither GENERATOR_FILE nor USED_FOR_TARGET
# is defined.  (Much of this is temporary.)
# is defined.  (Much of this is temporary.)
 
 
case $output in
case $output in
    tm.h )
    tm.h )
        cat >> ${output}T <<EOF
        cat >> ${output}T <<EOF
#if defined IN_GCC && !defined GENERATOR_FILE && !defined USED_FOR_TARGET
#if defined IN_GCC && !defined GENERATOR_FILE && !defined USED_FOR_TARGET
# include "insn-constants.h"
# include "insn-constants.h"
# include "insn-flags.h"
# include "insn-flags.h"
#endif
#endif
EOF
EOF
    ;;
    ;;
esac
esac
 
 
# Add multiple inclusion protection guard, part two.
# Add multiple inclusion protection guard, part two.
echo "#endif /* ${header_guard} */" >> ${output}T
echo "#endif /* ${header_guard} */" >> ${output}T
 
 
# Avoid changing the actual file if possible.
# Avoid changing the actual file if possible.
if [ -f $output ] && cmp ${output}T $output >/dev/null 2>&1; then
if [ -f $output ] && cmp ${output}T $output >/dev/null 2>&1; then
    echo $output is unchanged >&2
    echo $output is unchanged >&2
    rm -f ${output}T
    rm -f ${output}T
else
else
    mv -f ${output}T $output
    mv -f ${output}T $output
fi
fi
 
 
# Touch a stamp file for Make's benefit.
# Touch a stamp file for Make's benefit.
rm -f cs-$output
rm -f cs-$output
echo timestamp > cs-$output
echo timestamp > cs-$output
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.