This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
Re: other/8283: Failed to build native GCC-3.2 on i686 linux machine
- From: reichelt at igpm dot rwth-aachen dot de
- To: gcc-bugs at gcc dot gnu dot org, gcc-prs at gcc dot gnu dot org, hfanous at rogers dot com, nobody at gcc dot gnu dot org
- Date: 8 Nov 2002 22:18:39 -0000
- Subject: Re: other/8283: Failed to build native GCC-3.2 on i686 linux machine
- Reply-to: reichelt at igpm dot rwth-aachen dot de, gcc-bugs at gcc dot gnu dot org, gcc-prs at gcc dot gnu dot org, hfanous at rogers dot com, nobody at gcc dot gnu dot org, gcc-gnats at gcc dot gnu dot org
Synopsis: Failed to build native GCC-3.2 on i686 linux machine
State-Changed-From-To: open->feedback
State-Changed-By: reichelt
State-Changed-When: Fri Nov 8 14:18:39 2002
State-Changed-Why:
Maybe your problems arise from a faulty configuration.
http://gcc.gnu.org/install/configure.html says:
First, we highly recommend that GCC be built into a separate directory than the sources which
does not reside within the source tree. This is how we generally build GCC; building where
srcdir == objdir should still work, but doesn't get extensive testing; building where objdir is a
subdirectory of srcdir is unsupported.
You are trying to build in "obj" which you created as
a subdirectory of the srcdir gcc-3.2.
You should try to configure the compiler as follows:
tar zxf gcc-3.2.tar.gz
mkdir obj
cd obj
../gcc-3.2/configure --program-suffix=-3.2 --enable-shared --with-gnu-as --with-gnu-ld --enable-threads=posix --enable-version-specific-runtime-libs
make bootstrap
Please tell us, whether this solves your build problems
or not.
http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view%20audit-trail&database=gcc&pr=8283