|
Home > Archive > Unix True 64 > January 2005 > gcc3.4.3 & make problems on Tru64 v5.1
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
gcc3.4.3 & make problems on Tru64 v5.1
|
|
| Jason Black 2005-01-19, 7:48 am |
| Hi,
When trying to make gcc3.4.3 with GNU make v3.80
# make -v
GNU Make 3.80
# /gcc/configure
works OK
However, the subsequent make eventually fails with:
ar: libiberty.a: File truncated
make[1]: *** [libiberty.a] Error 1
make[1]: Leaving directory `/gcc/libiberty'
make: *** [all-libiberty] Error 2
Any ideas?
Jason
| |
| Mario Stargard 2005-01-19, 5:53 pm |
| Jason Black wrote:
> Hi,
>
> When trying to make gcc3.4.3 with GNU make v3.80
>
> # make -v
> GNU Make 3.80
>
> # /gcc/configure
>
> works OK
>
> However, the subsequent make eventually fails with:
>
> ar: libiberty.a: File truncated
> make[1]: *** [libiberty.a] Error 1
> make[1]: Leaving directory `/gcc/libiberty'
> make: *** [all-libiberty] Error 2
>
> Any ideas?
>
> Jason
Have you tried building gcc 3.4.3 with an older version of gcc? That
worked for me. I couldn't get gcc 3.4 to bootstrap compile with the
stock cc.
Mario
| |
| Erik Braun 2005-01-20, 7:54 am |
| Jason Black <jb@bluebubble.uk.com> wrote:
> # /gcc/configure
> works OK
> However, the subsequent make eventually fails with:
If you do not need the Native Language Support (NLS), which lets GCC
output diagnostics in languages other than American English, then you
have an simple solution by disabling NLS:
cd gcc-3.4.3
mkdir o
cd o
CC=cc ../configure --enable-languages=c,c++ --enable-threads --disable-nls
make bootstrap
good luck,
Erik
|
|
|
|
|