This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: Build problem with gcc 3.4 on Mac OS X
- From: Eljay Love-Jensen <eljay at adobe dot com>
- To: Davide Angelocola <riavulo at slackit dot org>, gcc at gcc dot gnu dot org
- Date: Sun, 20 Jun 2004 08:31:48 -0500
- Subject: Re: Build problem with gcc 3.4 on Mac OS X
- References: <0108E64B-C2AF-11D8-98A0-000D9327FB0A@slackit.org>
Hi Davide,
[1] $ cd gcc-3.4.0
[2] $ mkdir BUILD
[3] $ cd BUILD
[4] $ ../configure --prefix=/usr --program-suffix="-3.4" --with-cpu=ppc
--enable-altivec ppc --target=i686
#2 is wrong. Don't make a build directory under gcc-3.4.0. Instead, make
a peer directory:
[1] $ cd gcc-3.4.0
[2] $ mkdir ../BUILD
[3] $ cd ../BUILD
[4] $ ../gcc-3.4.0/configure --prefix=/usr --program-suffix="-3.4"
--with-cpu=ppc --enable-altivec ppc --target=i686
I'm not sure about the other issues. I haven't tried to build GCC 3.4.0 on
OS X / Darwin yet.
--Eljay