This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug bootstrap/26814] Bootstrapping with a non default ABI (-m64 on ppc-darwin or on ppc-linux with a compiler defaulting to 32 and now defaulting to 64)
- From: "howarth at nitro dot med dot uc dot edu" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 3 Nov 2006 03:14:13 -0000
- Subject: [Bug bootstrap/26814] Bootstrapping with a non default ABI (-m64 on ppc-darwin or on ppc-linux with a compiler defaulting to 32 and now defaulting to 64)
- References: <bug-26814-271@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Comment #15 from howarth at nitro dot med dot uc dot edu 2006-11-03 03:14 -------
I can now complete a multilib build of the languages c, c++, objc and fortran
on a G4 under Darwin8 if I apply the following patch...
--- gcc-4.2-20061031/zlib/configure.ac.org 2006-11-02 11:44:36.000000000
-0500
+++ gcc-4.2-20061031/zlib/configure.ac 2006-11-02 12:19:04.000000000 -0500
@@ -31,15 +31,6 @@
AC_ARG_WITH(cross-host,
[ --with-cross-host=HOST configuring with a cross compiler])
-dnl Default to --enable-multilib
-AC_ARG_ENABLE(multilib,
-[ --enable-multilib build many library versions (default)],
-[case "${enableval}" in
- yes) multilib=yes ;;
- no) multilib=no ;;
- *) AC_MSG_ERROR(bad value ${enableval} for multilib option) ;;
- esac], [test -z "$with_target_subdir" && multilib=no || multilib=yes])dnl
-
AC_ARG_WITH(system-zlib,
[ --with-system-zlib use installed libz])
and do a...
cd libgfortran
aclocal -I ../config
autoconf -I ../config
cd ..
cd zlib
aclocal -I ../config
autoreconf -I ../config
cd ..
before I run configure. I have worked out a similar patch for configure.ac in
libjava which I will test next on a build with the java language included.
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26814