|
|
beeloo@xxxxxxxxx writes:
> I have problem to build the gcc-3.2.3. I downloaded the source code.
> Here is what I did.
>
> 1) cd /usr/local/src
> 2) tar zxf gcc-3.2.3.tar.gz
> 3) cd ..
> 4) mkdir gcc-3.2.3
> 5) cd gcc-3.2.3
> 6) ../src/gcc-3.2.3/configure --prefix=/usr/local/gcc-3.2.3/
> 7) make
>
> And I received the below errors at the end:
> make[1]: *** [read-rtl.o] Error 1
> make[1]: Leaving directory `/usr/local/gcc-3.2.3/gcc'
> make: *** [all-gcc] Error 2
>
>
> Could someone please let me know what this error mean?
This means that somewhere before these lines, there was an actual
error message.
> I think there is some more errors at the beginning, but I can't
> copied that error.
Try
% make | tee make.out
or
% make 2>&1 | tee make.out
to save the output of make into the file make.out
> Also, are those errors log in somewhere?
Not unless you save them yourself; see above.
> I tried to look at /var/log/messages, but didn't find much..
Compiling gcc doesn't produce entries in /var/log/messages.
|
|