Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexandre Oliva <aoliva@redhat.com>2000-08-03 23:20:16 +0400
committerAlexandre Oliva <aoliva@redhat.com>2000-08-03 23:20:16 +0400
commitd2b20142e4e359f3fd6332944e482bf2be4c2093 (patch)
treebfbf51f20bcb1fd0e5f0d06a6ff30eff7895688f /config-ml.in
parent14323f6a974afc08e8e4564db5c097ac1eaafcb3 (diff)
* config-ml.in: Adjust multilib search paths to the
appropriate multilib tree.
Diffstat (limited to 'config-ml.in')
-rw-r--r--config-ml.in35
1 files changed, 34 insertions, 1 deletions
diff --git a/config-ml.in b/config-ml.in
index e5ca10ec1..090cc2bb4 100644
--- a/config-ml.in
+++ b/config-ml.in
@@ -753,7 +753,40 @@ if [ -n "${multidirs}" ] && [ -z "${ml_norecursion}" ]; then
break
fi
done
- ml_config_env='CC="${CC} $flags"'
+ ml_config_env='CC="${CC_} $flags" CXX="${CXX_} $flags"'
+
+ if [ "${with_target_subdir}" = "." ]; then
+ CC_=$CC
+ CXX_=$CXX
+ else
+ # Create a regular expression that matches any string as long
+ # as ML_POPDIR.
+ popdir_rx=`echo ${ML_POPDIR} | sed 's,.,.,g'`
+ CC_=
+ for arg in ${CC}; do
+ case $arg in
+ -[BIL]"${ML_POPDIR}"/*)
+ CC_="${CC_} "`echo "X${arg}" | sed -n "s/X\\(-[BIL]${popdir_rx}\\).*/\\1/p"`/${ml_dir}`echo "X${arg}" | sed -n "s/X-[BIL]${popdir_rx}\\(.*\\)/\1/p"` ;;
+ "${ML_POPDIR}"/*)
+ CC_="${CC_} "`echo "X${arg}" | sed -n "s/X\\(${popdir_rx}\\).*/\\1/p""`/${ml_dir}`echo "X${arg}" | sed -n "s/X${popdir_rx}\\(.*\\)/\\1/p"` ;;
+ *)
+ CC_="${CC_} ${arg}" ;;
+ esac
+ done
+
+ CXX_=
+ for arg in ${CXX}; do
+ case $arg in
+ -[BIL]"${ML_POPDIR}"/*)
+ CXX_="${CXX_} "`echo "X${arg}" | sed -n "s/X\\(-[BIL]${popdir_rx}\\).*/\\1/p"`/${ml_dir}`echo "X${arg}" | sed -n "s/X-[BIL]${popdir_rx}\\(.*\\)/\\1/p"` ;;
+ "${ML_POPDIR}"/*)
+ CXX_="${CXX_} "`echo "X${arg}" | sed -n "s/X\\(${popdir_rx}\\).*/\\1/p"`/${ml_dir}`echo "X${arg}" | sed -n "s/X${popdir_rx}\\(.*\\)/\\1/p"` ;;
+ *)
+ CXX_="${CXX_} ${arg}" ;;
+ esac
+ done
+
+ fi
if eval ${ml_config_env} ${ml_config_shell} ${ml_recprog} \
--with-multisubdir=${ml_dir} --with-multisrctop=${multisrctop} \