program_transform_name="-e s,^,${program_prefix}, ${program_transform_name}"
fi
-# If gcc's sources are available, extract its version number which is used by
-# $libsubdir.
-if [ -f $srcdir/gcc/version.c ]; then
- gcc_version=`sed -e 's/.*\"\([^ \"]*\)[ \"].*/\1/' < ${srcdir}/gcc/version.c`
+# Check whether --with-gcc-version was given.
+if [ "${with_gcc_version+set}" = set ]; then
+ gcc_version="$with_gcc_version"
+else
+ if [ "${srcdir}" = "." ] ; then
+ if [ "${with_target_subdir}" != "." ] ; then
+ topsrcdir=${with_multisrctop}../..
+ else
+ topsrcdir=${with_multisrctop}..
+ fi
+ else
+ case ${srcdir} in
+ */*/* ) # Need to do this only in subdirectories.
+ topsrcdir=${srcdir}/..
+ ;;
+ * ) # We are already in the topsrcdir.
+ topsrcdir=${srcdir}
+ ;;
+ esac
+ fi
+ # If gcc's sources are available, extract its version number which is used by
+ # $libsubdir.
+ if [ -f ${topsrcdir}/gcc/version.c ] ; then
+ gcc_version=`sed -e 's/.*\"\([^ \"]*\)[ \"].*/\1/' < ${topsrcdir}/gcc/version.c`
+ fi
fi
# If CC and CXX are not set in the environment, and the Makefile
if [ ! -z "${recprog}" ] ; then
if eval ${config_shell} ${recprog} ${verbose} ${buildopt} --host=${host_alias} --target=${target_alias} \
${prefixoption} ${tmpdiroption} ${exec_prefixoption} \
- ${srcdiroption} ${program_prefixoption} ${program_suffixoption} ${program_transform_nameoption} ${site_option} ${withoptions} ${withoutoptions} ${enableoptions} ${disableoptions} ${floating_pointoption} ${cache_file_option} ${removing} ${other_options} ${redirect} ; then
+ ${srcdiroption} ${program_prefixoption} ${program_suffixoption} ${program_transform_nameoption} ${site_option} --with-gcc-version=${gcc_version} ${withoptions} ${withoutoptions} ${enableoptions} ${disableoptions} ${floating_pointoption} ${cache_file_option} ${removing} ${other_options} ${redirect} ; then
true
else
echo Configure in `pwd` failed, exiting. 1>&2
prefix = @prefix@
exec_prefix = @exec_prefix@
target_alias = @target_alias@
-version = @version@
+gcc_version = @gcc_version@
bindir = $(exec_prefix)/bin
libdir = $(exec_prefix)/lib
infodir = $(prefix)/info
includedir = $(prefix)/include
docdir = $(datadir)/doc
-libsubdir = $(libdir)/gcc-lib/$(target_alias)/$(version)
+libsubdir = $(libdir)/gcc-lib/$(target_alias)/$(gcc_version)
TO_TOPDIR = ..
test -f libU77/makefile && mv libU77/makefile libU77/makefile.ori
# Get the version number from the toplevel
-version=`sed -e 's/.*\"\([^ \"]*\)[ \"].*/\1/' < ${srcdir}/../gcc/version.c`
+if test x${with_gcc_version} = x; then
+ # Try to get the version number from a hopefully existing gcc directory.
+ if test -d ${srcdir}/../gcc; then
+ gcc_version=`sed -e 's/.*\"\([^ \"]*\)[ \"].*/\1/' < ${srcdir}/../gcc/version.c`
+ else
+ gcc_version=UNKNOWN
+ fi
+else
+ gcc_version=${with_gcc_version}
+fi
ac_aux_dir=
for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do
fi
echo $ac_n "checking host system type""... $ac_c" 1>&6
-echo "configure:1915: checking host system type" >&5
+echo "configure:1924: checking host system type" >&5
host_alias=$host
case "$host_alias" in
echo "$ac_t""$host" 1>&6
echo $ac_n "checking target system type""... $ac_c" 1>&6
-echo "configure:1936: checking target system type" >&5
+echo "configure:1945: checking target system type" >&5
target_alias=$target
case "$target_alias" in
echo "$ac_t""$target" 1>&6
echo $ac_n "checking build system type""... $ac_c" 1>&6
-echo "configure:1954: checking build system type" >&5
+echo "configure:1963: checking build system type" >&5
build_alias=$build
case "$build_alias" in
s%@CPP@%$CPP%g
s%@F2C_INTEGER@%$F2C_INTEGER%g
s%@F2C_LONGINT@%$F2C_LONGINT%g
-s%@version@%$version%g
+s%@gcc_version@%$gcc_version%g
s%@host@%$host%g
s%@host_alias@%$host_alias%g
s%@host_cpu@%$host_cpu%g
test -f libU77/makefile && mv libU77/makefile libU77/makefile.ori
# Get the version number from the toplevel
-version=`sed -e 's/.*\"\([[^ \"]]*\)[[ \"]].*/\1/' < ${srcdir}/../gcc/version.c`
-AC_SUBST(version)
+if test x${with_gcc_version} = x; then
+ # Try to get the version number from a hopefully existing gcc directory.
+ if test -d ${srcdir}/../gcc; then
+ gcc_version=`sed -e 's/.*\"\([[^ \"]]*\)[[ \"]].*/\1/' < ${srcdir}/../gcc/version.c`
+ else
+ gcc_version=UNKNOWN
+ fi
+else
+ gcc_version=${with_gcc_version}
+fi
+AC_SUBST(gcc_version)
AC_CANONICAL_SYSTEM
AC_SUBST(target_alias)