* configure.in (m32c): Build libstdc++-v3. Pass flags to
reference libgloss so that libssp can be built in a combined tree. * configure: Regenerate.
This commit is contained in:
parent
e163e3e138
commit
ad352d9bd6
|
@ -1,3 +1,10 @@
|
|||
2006-04-18 DJ Delorie <dj@redhat.com>
|
||||
|
||||
* configure.in (m32c): Build libstdc++-v3. Pass flags to
|
||||
reference libgloss so that libssp can be built in a combined
|
||||
tree.
|
||||
* configure: Regenerate.
|
||||
|
||||
2006-04-10 Ben Elliston <bje@au.ibm.com>
|
||||
|
||||
* contrib: Remove directory.
|
||||
|
|
17
configure.in
17
configure.in
|
@ -445,9 +445,6 @@ case "${target}" in
|
|||
*-*-vxworks*)
|
||||
noconfigdirs="$noconfigdirs target-newlib target-libgloss target-libiberty target-libstdc++-v3 ${libgcj}"
|
||||
;;
|
||||
m32c-*-*)
|
||||
noconfigdirs="$noconfigdirs target-libstdc++-v3"
|
||||
;;
|
||||
alpha*-dec-osf*)
|
||||
# ld works, but does not support shared libraries.
|
||||
# newlib is not 64 bit ready. I'm not sure about fileutils.
|
||||
|
@ -2129,6 +2126,20 @@ if test "x${use_gnu_ld}" = x &&
|
|||
FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -L$$r/$(HOST_SUBDIR)/ld'
|
||||
fi
|
||||
|
||||
# Search for other target-specific linker scripts and such.
|
||||
case "${target}" in
|
||||
m32c-*-* )
|
||||
if test -d ${srcdir}/libgloss/m32c; then
|
||||
# This is for crt0.o
|
||||
FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -B$$r/$(TARGET_SUBDIR)/libgloss/m32c'
|
||||
# This is for r8c.ld
|
||||
FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -L$$r/$(TARGET_SUBDIR)/libgloss/m32c'
|
||||
# This is for libnosys.a
|
||||
FLAGS_FOR_TARGET=$FLAGS_FOR_TARGET' -L$$r/$(TARGET_SUBDIR)/libgloss/libnosys'
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
|
||||
# Makefile fragments.
|
||||
for frag in host_makefile_frag target_makefile_frag alphaieee_frag ospace_frag;
|
||||
do
|
||||
|
|
Loading…
Reference in New Issue