[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [hobbit] HOBBIT 4.0.3 build issue on hp 11.0
- To: hobbit (at) hswn.dk
- Subject: Re: [hobbit] HOBBIT 4.0.3 build issue on hp 11.0
- From: Kevin Pye <kevin.pye (at) gmail.com>
- Date: Mon, 23 May 2005 21:33:17 +1000
- Domainkey-signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=bfg5K7QYN9YDqHF/G9ZbcTDEdsoEE6ZM37u/W11DutpCVdGR3+0wtsiJaizM8pEqKoBcoTnZliRxV7CP6uH20/jp0bXwqIgR1QX1tCuHrsQGoa6YfIJK98boeogge6z9gBIBgYz+sFNFBGxM8ZowQV5TbfE7n4JvNZtlBu8ScMo=
- References: <96307D39C221F14D944CF71546AC95910448F9@MC4EXCH02.mcdata.com> <20050519181259.GA24954@hswn.dk> <4291BA39.6080807@lmco.com>
On 23/05/05, Michael Nemeth <michael.nemeth (at) lmco.com> wrote:
> I hacked my Makes for .1 and .2 and got them to work but this time
> I cann't get it!
>
> HP-UX B.11.00
> ERRORS:
>
> ranlib libbbgen.a || echo ""
> cc -g -O -D_REENTRANT -DHPUX -DMAXMSG=32768 -DBBDPORTNUMBER=1984 -I.
> -I/home/nemethm/hobbit-4.0.3/include -I. -I../include -DSTANDALONE -o
> loadhosts loadhosts.c ./libbbgen.a
> /usr/ccs/bin/ld: Unsatisfied symbols:
> expand_env (first referenced in ./libbbgen.a(misc.o)) (code)
> xgetenv (first referenced in ./libbbgen.a(misc.o)) (code)
> getenv_default (first referenced in ./libbbgen.a(misc.o)) (code)
> gmake[1]: *** [loadhosts] Error 1
Check out lib/environ.o. You'll probably find it is zero bytes in
size. You probably missed an error in a previous make run (try make
clean and then running make again). There is a bug in the HP-UX C
compiler which causes it to crash leaving a zero file and the bug is
triggered on environ.c. Running make again doesn't try to recompile
environ.c because of the empty environ.o file.
There is a patch for the compiler, but I don't know the patch number off-hand.
Kevin.