[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Cannot build 1.5.22 on HP-UX 11.00
From: |
Ralf Wildenhues |
Subject: |
Re: Cannot build 1.5.22 on HP-UX 11.00 |
Date: |
Fri, 4 Aug 2006 20:28:24 +0200 |
User-agent: |
Mutt/1.5.12-2006-07-14 |
Hello Johannes,
First off, the mailing list in question is named bug-libtool, not
libtool-bug. I wonder how it still arrived here, maybe the latter
is an alias of the former?
* Johannes Abt wrote on Fri, Aug 04, 2006 at 05:22:21PM CEST:
>
> during the build of libtool-1.5.22, cc is invoked with "-b" (probably
> instead of "-Wl,-b").
>
> $ ./config.guess
> hppa2.0w-hp-hpux11.00
Which compiler version is this?
We've had a similar report a while ago; IIRC the issue is that if you
use a vendor compiler from an older HPUX version, it does not know -b
yet; so please print the output of
$ cc -c -V a.c
so we can try using that as criterion (or a test, if all fails). The
compiler on the 11.00 system I have access to:
| ccom: HP92453-01 B.11.X.32509-32512.GP HP C Compiler
understands -b.
> $ CC=cc ./configure --prefix=/usr/local/ && make
Please instead use
$ ./configure CC=cc --prefix=/usr/local && make
so that, when possibly configure is rerun later automatically by a
'./config.status --recheck', the information about your CC setting is
not lost.
Cheers,
Ralf