summaryrefslogtreecommitdiffstats
path: root/contrib/gcc/genmultilib
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/gcc/genmultilib')
-rw-r--r--contrib/gcc/genmultilib88
1 files changed, 64 insertions, 24 deletions
diff --git a/contrib/gcc/genmultilib b/contrib/gcc/genmultilib
index ca3b71b..3cac4e9 100644
--- a/contrib/gcc/genmultilib
+++ b/contrib/gcc/genmultilib
@@ -1,6 +1,6 @@
#!/bin/sh
# Generates multilib.h.
-# Copyright (C) 1994, 1995, 1996, 1997, 1999 Free Software Foundation, Inc.
+# Copyright (C) 1994, 1995, 1996, 1997, 1999, 2002 Free Software Foundation, Inc.
#This file is part of GCC.
@@ -63,10 +63,15 @@
# for the rule to exclude a set. Options can be preceded with a '!' to
# match a logical NOT.
-# The optional sevenths argument is a list of OS subdirectory names.
-# The format is the same as of the second argument.
-# The difference is that second argument describes multilib directories
-# in GCC conventions, while this one the OS multilib convention.
+# The optional seventh argument is a list of OS subdirectory names.
+# The format is either the same as of the second argument, or a set of
+# mappings. When it is the same as the second argument, it describes
+# the multilib directories using OS conventions, rather than GCC
+# conventions. When it is a set of mappings of the form gccdir=osdir,
+# the left side gives the GCC convention and the right gives the
+# equivalent OS defined location. If the osdir part begins with a !,
+# the os directory names are used exclusively. Use the mapping when
+# there is no one-to-one equivalence between GCC levels and the OS.
# The last option should be "yes" if multilibs are enabled. If it is not
# "yes", all GCC multilib dir names will be ".".
@@ -120,6 +125,10 @@ enable_multilib=$8
echo "static const char *const multilib_raw[] = {"
+mkdir tmpmultilib.$$ || exit 1
+# Use cd ./foo to avoid CDPATH output.
+cd ./tmpmultilib.$$ || exit 1
+
# What we want to do is select all combinations of the sets in
# options. Each combination which includes a set of mutually
# exclusive options must then be output multiple times, once for each
@@ -161,11 +170,8 @@ chmod +x tmpmultilib
combinations=`initial=/ ./tmpmultilib ${options}`
-rm -f tmpmultilib
-
# If there exceptions, weed them out now
if [ -n "${exceptions}" ]; then
- rm -f tmpmultilib2
cat >tmpmultilib2 <<\EOF
#!/bin/sh
# This recursive script weeds out any combination of multilib
@@ -187,7 +193,6 @@ cat >>tmpmultilib2 <<\EOF
EOF
chmod +x tmpmultilib2
combinations=`./tmpmultilib2 ${combinations}`
- rm -f ./tmpmultilib2
fi
# Construct a sed pattern which will convert option names to directory
@@ -216,24 +221,44 @@ fi
# Construct a sed pattern which will convert option names to OS directory
# names.
toosdirnames=
+defaultosdirname=
if [ -n "${osdirnames}" ]; then
set x ${osdirnames}
shift
- for set in ${options}; do
- for opts in `echo ${set} | sed -e 's|/| |'g`; do
- patt="/"
- for opt in `echo ${opts} | sed -e 's_|_ _'g`; do
- if [ "$1" != "${opt}" ]; then
- toosdirnames="${toosdirnames} -e s|/${opt}/|/${1}/|g"
- patt="${patt}${1}/"
- if [ "${patt}" != "/${1}/" ]; then
- toosdirnames="${toosdirnames} -e s|${patt}|/${1}/|g"
+ while [ $# != 0 ] ; do
+ case "$1" in
+ .=*)
+ defaultosdirname=`echo $1 | sed 's|^.=|:|'`
+ shift
+ ;;
+ *=*)
+ patt=`echo $1 | sed -e 's|=|/$=/|'`
+ toosdirnames="${toosdirnames} -e s=^/${patt}/="
+ shift
+ ;;
+ *)
+ break
+ ;;
+ esac
+ done
+
+ if [ $# != 0 ]; then
+ for set in ${options}; do
+ for opts in `echo ${set} | sed -e 's|/| |'g`; do
+ patt="/"
+ for opt in `echo ${opts} | sed -e 's_|_ _'g`; do
+ if [ "$1" != "${opt}" ]; then
+ toosdirnames="${toosdirnames} -e s|/${opt}/|/${1}/|g"
+ patt="${patt}${1}/"
+ if [ "${patt}" != "/${1}/" ]; then
+ toosdirnames="${toosdirnames} -e s|${patt}|/${1}/|g"
+ fi
fi
- fi
+ done
+ shift
done
- shift
done
- done
+ fi
fi
# We need another recursive shell script to correctly handle positive
@@ -275,7 +300,7 @@ for set in ${options}; do
done
done
optout=`echo ${optout} | sed -e 's/^ //'`
-echo "\". ${optout};\","
+echo "\".${defaultosdirname} ${optout};\","
# Work over the list of combinations. We have to translate each one
# to use the directory names rather than the option names, we have to
@@ -298,8 +323,16 @@ for combo in ${combinations}; do
osdirout=`echo ${osdirout} | sed -e 's|^/||' -e 's|/$||g'`
if [ "x${enable_multilib}" != xyes ]; then
dirout=".:${osdirout}"
+ disable_multilib=yes
else
- dirout="${dirout}:${osdirout}"
+ case "${osdirout}" in
+ !*)
+ dirout=`echo ${osdirout} | sed 's/^!//'`
+ ;;
+ *)
+ dirout="${dirout}:${osdirout}"
+ ;;
+ esac
fi
else
if [ "x${enable_multilib}" != xyes ]; then
@@ -371,6 +404,13 @@ moptions=`echo ${options} | sed -e 's,[ ][ ]*, ,g'`
echo ""
echo "static const char *multilib_options = \"${moptions}\";"
-rm -f tmpmultilib2
+# Finally output the disable flag if specified
+if [ "x${disable_multilib}" = xyes ]; then
+ echo ""
+ echo "#define DISABLE_MULTILIB 1"
+fi
+
+cd ..
+rm -r tmpmultilib.$$
exit 0
OpenPOWER on IntegriCloud