Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 28 Oct 2003 21:26:03 +0100
From:      Marius Strobl <marius@alchemy.franken.de>
To:        Oliver Eikemeier <eikemeier@fillmore-labs.com>
Cc:        FreeBSD-sparc64@freebsd.org
Subject:   Re: Help with a compile error on sparc64 needed.
Message-ID:  <20031028212603.A17836@newtrinity.zeist.de>
In-Reply-To: <3F9EB179.9070002@fillmore-labs.com>; from eikemeier@fillmore-labs.com on Tue, Oct 28, 2003 at 07:12:09PM %2B0100
References:  <3F9EB179.9070002@fillmore-labs.com>

next in thread | previous in thread | raw e-mail | index | archive | help

--St7VIuEGZ6dlpu13
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline

On Tue, Oct 28, 2003 at 07:12:09PM +0100, Oliver Eikemeier wrote:
> Hi list,
> 
> sorry when I am OT, but can someone point me in to right direction how to fix:
> 
>   http://bento.freebsd.org/errorlogs/sparc64-5-latest/nmap-3.48_1.log
> 
> The error is:
> 
> cc -c  -I/usr/include -O -pipe  -Wall  [...] nsock_event.c -o nsock_event.o
> {standard input}: Assembler messages:
> {standard input}:441: Error: relocation overflow
> *** Error code 1
> 
> And I have no sparc machine to test this...
> 

I already sent you the attached patch to work around this GCC bug in
Nmap a while ago.


--St7VIuEGZ6dlpu13
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename="patch-nsock::src::nsock_event.c"

--- nsock/src/nsock_event.c.orig	Fri Oct  3 15:33:05 2003
+++ nsock/src/nsock_event.c	Fri Oct  3 15:32:31 2003
@@ -242,8 +242,9 @@
   int type_code = (int) type;
   unsigned long serial = ms->next_event_serial++;
   unsigned long max_serial_allowed;
-  int shiftbits = sizeof(nsock_event_id) * 8 - TYPE_CODE_NUM_BITS;
+  int shiftbits;
   assert(type <= 3);
+  shiftbits = sizeof(nsock_event_id) * 8 - TYPE_CODE_NUM_BITS;
   
   max_serial_allowed = ( 1 << shiftbits ) - 1;
   if (serial == max_serial_allowed ) {

--St7VIuEGZ6dlpu13--



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20031028212603.A17836>