This is the mail archive of the
gcc-help@gcc.gnu.org
mailing list for the GCC project.
Re: Gcc Build Problem
- To: "Sharifi, Hamid" <hamid dot sharifi at cnh dot com>
- Subject: Re: Gcc Build Problem
- From: Billy Hutton <huttonb at digitalin-site dot com>
- Date: Wed, 10 Jan 2001 10:55:54 -0700 (MST)
- cc: "'gcc-help at gcc dot gnu dot org'" <gcc-help at gcc dot gnu dot org>
> I am trying to install gcc on a Sun Sparc machine running Solaris 2.6. I
> have already installed GNU's make under /usr/local. When I run the command
> "/usr/local/bin/make bootstrap" I get the following message.
>
>
> make: *** No rule to make target `bootstrap'. Stop.
You just need make to be in your path. I'm assuming /usr/local/bin is in
your path. If this is true, then you issue the command 'make bootstrap'
from inside the source-level path of what you're compiling.
E.G. I want to compile egcs-1.1.2, which is installed at
/usr/local/src/egcs-1.1.2. I would 'cd /usr/local/src/egcs-1.1.2' and
issue 'make bootstrap'. :)
(Of course, you should build egcs in it's own object directory, but I
didn't want to make this confusing.) :)
- Billy