Commit aaf67a14 by H.J. Lu Committed by H.J. Lu

mklibgcc.in: Put back the default set of EXTRA_MULTILIB_PART.

2004-12-03  H.J. Lu  <hongjiu.lu@intel.com>

	* mklibgcc.in: Put back the default set of EXTRA_MULTILIB_PART.

From-SVN: r91684
parent dafb7f3f
2004-12-03 H.J. Lu <hongjiu.lu@intel.com>
* mklibgcc.in: Put back the default set of EXTRA_MULTILIB_PART.
2004-12-03 Richard Sandiford <rsandifo@redhat.com> 2004-12-03 Richard Sandiford <rsandifo@redhat.com>
* configure.ac: Move TL_AC_GCC_VERSION into initialization section. * configure.ac: Move TL_AC_GCC_VERSION into initialization section.
......
...@@ -666,36 +666,34 @@ for ml in $MULTILIBS; do ...@@ -666,36 +666,34 @@ for ml in $MULTILIBS; do
# simultaneous goal targets, so that rules which cannot execute # simultaneous goal targets, so that rules which cannot execute
# simultaneously are properly serialized. # simultaneously are properly serialized.
# We don't need to build the default ones since they have been extra=
# built before we get here. echo
if [ $dir != "." ]; then for f in $EXTRA_MULTILIB_PARTS; do
extra= case $dir in
t=$dir/ .) out=$f ; t= ;;
echo *) out=$dir/$f ; t=$dir/ ;;
for f in $EXTRA_MULTILIB_PARTS; do esac
out=$dir/$f case $out in
case $out in # Prevent `make' from interpreting $out as a macro assignment
# Prevent `make' from interpreting $out as a macro assignment *'$(EQ)'*) targ="T_TARGET=$out T_TARGET" ;;
*'$(EQ)'*) targ="T_TARGET=$out T_TARGET" ;; *) targ=$out ;;
*) targ=$out ;; esac
esac extra="$extra $targ"
extra="$extra $targ" done
done
echo extra$suffix: stmp-dirs
echo extra$suffix: stmp-dirs echo " $make_compile" \\
echo " $make_compile" \\ echo ' LIBGCC2_CFLAGS="$(LIBGCC2_CFLAGS)' $flags '" ' \\
echo ' LIBGCC2_CFLAGS="$(LIBGCC2_CFLAGS)' $flags '" ' \\ echo ' MULTILIB_CFLAGS="'$flags'"' T=$t $extra
echo ' MULTILIB_CFLAGS="'$flags'"' T=$t $extra echo "all: extra$suffix"
echo "all: extra$suffix"
# Make libunwind.so and libgcc_s.so depend on these, since they
# Make libunwind.so and libgcc_s.so depend on these, since they # are likely to be implicitly used by the link process.
# are likely to be implicitly used by the link process. if [ "$libgcc_s_so" ]; then
if [ "$libgcc_s_so" ]; then echo "$libgcc_s_so: extra$suffix"
echo "$libgcc_s_so: extra$suffix" fi
fi if [ "$libunwind_so" ]; then
if [ "$libunwind_so" ]; then echo "$libunwind_so: extra$suffix"
echo "$libunwind_so: extra$suffix"
fi
fi fi
fi fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment