This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Darwin-hosted cross-compiler configury
- From: Geoffrey Keating <gkeating at apple dot com>
- To: gcc-patches at gcc dot gnu dot org
- Date: Thu, 28 Nov 2002 12:27:04 -0800 (PST)
- Subject: Darwin-hosted cross-compiler configury
This fixes one of my previous patches by properly separating host and
target noconfigdirs in the Darwin configury.
Tested by building a powerpc-eabisim cross from Darwin.
--
- Geoffrey Keating <geoffk@apple.com>
===File ~/patches/darwin-confighost.patch===================
2002-11-28 Geoffrey Keating <geoffk@apple.com>
* configure.in: Move host-specific darwin noconfigdirs into
the host-specific section.
Index: configure.in
===================================================================
RCS file: /cvs/gcc/gcc/configure.in,v
retrieving revision 1.190
diff -u -p -u -p -r1.190 configure.in
--- configure.in 4 Nov 2002 18:40:27 -0000 1.190
+++ configure.in 28 Nov 2002 20:20:34 -0000
@@ -238,6 +238,9 @@ case "${host}" in
powerpc-*-beos*)
noconfigdirs="$noconfigdirs tk itcl tix libgui gdb dejagnu readline"
;;
+ *-*-darwin*)
+ noconfigdirs="$noconfigdirs tk itcl tix libgui"
+ ;;
esac
# Save it here so that, even in case of --enable-libgcj, if the Java
@@ -525,7 +528,7 @@ case "${target}" in
noconfigdirs="$noconfigdirs gdb target-newlib target-libgloss ${libgcj}"
;;
powerpc-*-darwin*)
- noconfigdirs="$noconfigdirs bfd binutils ld gas opcodes gdb tk itcl tix libgui gprof ${libgcj}"
+ noconfigdirs="$noconfigdirs bfd binutils ld gas opcodes gdb gprof ${libgcj}"
;;
powerpc-*-eabi)
noconfigdirs="$noconfigdirs ${libgcj}"
============================================================