From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 29772 invoked by alias); 8 Jul 2002 21:30:58 -0000 Mailing-List: contact binutils-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: binutils-owner@sources.redhat.com Received: (qmail 29758 invoked from network); 8 Jul 2002 21:30:55 -0000 Received: from unknown (HELO mail-out1.apple.com) (17.254.0.52) by sources.redhat.com with SMTP; 8 Jul 2002 21:30:55 -0000 Received: from mailgate2.apple.com (A17-129-100-225.apple.com [17.129.100.225]) by mail-out1.apple.com (8.11.3/8.11.3) with ESMTP id g68LUsk14724; Mon, 8 Jul 2002 14:30:54 -0700 (PDT) Received: from scv2.apple.com (scv2.apple.com) by mailgate2.apple.com (Content Technologies SMTPRS 4.2.1) with ESMTP id ; Mon, 8 Jul 2002 14:30:54 -0700 Received: from apple.com (vpn-gh-581.apple.com [17.254.138.68]) by scv2.apple.com (8.11.3/8.11.3) with ESMTP id g68LUrT20319; Mon, 8 Jul 2002 14:30:53 -0700 (PDT) Message-ID: <3D2A0477.FE6F00BC@apple.com> Date: Mon, 08 Jul 2002 14:45:00 -0000 From: Stan Shebs Organization: Apple Computer, Inc. X-Accept-Language: en MIME-Version: 1.0 To: Nathanael Nerode CC: gcc-patches@gcc.gnu.org, gdb-patches@sources.redhat.com, binutils@sources.redhat.com, dj@redhat.com Subject: Re: [patch] remove references to 'grez' References: <20020708203720.GA13087@doctormoo.dyndns.org> Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-SW-Source: 2002-07/txt/msg00177.txt.bz2 Nathanael Nerode wrote: > > I can't seem to find hide nor hair of 'grez' anywhere on the Internet > (!), so I'm guessing it's dead and gone. Here's a patch to get rid of > the remaining references. Macs abandoned the scheme of putting object > code in resources around the time PowerMacs came out, so I'm not > surprised. This was actually part of a scheme to support full cross-compiling to Macs, a la cygwin, with grez ("GNU Rez") planned to be the resource compiler (needed for icons, menu text, etc - orthogonal to code gen, which was always xcoff for PowerMacs). Grez was mostly working at one point within Cygnus, but with the advent of OS X and its vastly different internals, the grez rationale evaporates. So yes, this is OK to delete. Stan > Note that the *-macos /*-mpw case gets folded into the *-*-* case. > > 2002-07-08 Nathanael Nerode > * configure.in: Don't build grez. > * Makefile.in: Ditto. > > Index: Makefile.in > =================================================================== > RCS file: /cvs/gcc/gcc/Makefile.in,v > retrieving revision 1.109 > diff -u -r1.109 Makefile.in > --- Makefile.in 8 Jul 2002 20:06:51 -0000 1.109 > +++ Makefile.in 8 Jul 2002 20:29:29 -0000 > @@ -549,7 +549,6 @@ > all-gnuserv \ > all-gprof \ > all-grep \ > - all-grez \ > all-gzip \ > all-hello \ > all-indent \ > @@ -691,7 +690,6 @@ > install-gnuserv \ > install-gprof \ > install-grep \ > - install-grez \ > install-gzip \ > install-hello \ > install-indent \ > @@ -853,7 +851,6 @@ > clean-gnuserv \ > clean-gprof \ > clean-grep \ > - clean-grez \ > clean-gzip \ > clean-hello \ > clean-indent \ > @@ -1687,7 +1684,6 @@ > all-target-gperf: configure-target-gperf all-target-libiberty all-target-libstdc++-v3 > all-gprof: all-libiberty all-bfd all-opcodes all-intl > all-grep: all-libiberty > -all-grez: all-libiberty all-bfd all-opcodes > all-gui: all-gdb all-libproc > all-guile: > all-gzip: all-libiberty > Index: configure.in > =================================================================== > RCS file: /cvs/gcc/gcc/configure.in,v > retrieving revision 1.170 > diff -u -r1.170 configure.in > --- configure.in 8 Jul 2002 20:06:51 -0000 1.170 > +++ configure.in 8 Jul 2002 20:29:31 -0000 > @@ -641,12 +641,6 @@ > *-*-lynxos*) > noconfigdirs="$noconfigdirs target-newlib target-libgloss ${libgcj}" > ;; > - *-*-macos* | \ > - *-*-mpw*) > - # Macs want a resource compiler. > - configdirs="$configdirs grez" > - noconfigdirs="$noconfigdirs ${libgcj}" > - ;; > *-*-*) > noconfigdirs="$noconfigdirs ${libgcj}" > ;;