[823] in arla-drinkers
Re: Solaris 7
daemon@ATHENA.MIT.EDU (assar@stacken.kth.se)
Wed May 12 15:46:51 1999
From owner-arla-drinkers@stacken.kth.se Wed May 12 19:46:51 1999
Return-Path: <owner-arla-drinkers@stacken.kth.se>
Delivered-To: arla-drinkers-mtg@bloom-picayune.mit.edu
Received: (qmail 8067 invoked from network); 12 May 1999 19:46:50 -0000
Received: from unknown (HELO sundance.stacken.kth.se) (130.237.234.41)
by bloom-picayune.mit.edu with SMTP; 12 May 1999 19:46:50 -0000
Received: (from majordom@localhost)
by sundance.stacken.kth.se (8.8.8/8.8.8) id VAA17771
for arla-drinkers-list; Wed, 12 May 1999 21:39:52 +0200 (MET DST)
Received: from assaris.sics.se (assaris.sics.se [193.10.66.108])
by sundance.stacken.kth.se (8.8.8/8.8.8) with ESMTP id VAA17767
for <arla-drinkers@stacken.kth.se>; Wed, 12 May 1999 21:39:48 +0200 (MET DST)
Received: (from assar@localhost) by assaris.sics.se (8.9.1/8.7.3) id VAA00591; Wed, 12 May 1999 21:42:52 +0200 (CEST)
From: assar@stacken.kth.se
To: Dominic Lai <dominic@cs.ust.hk>
Cc: arla-drinkers@stacken.kth.se
Subject: Re: Solaris 7
References: <19990507111835.A19787@argo.cit.nih.gov> <5lk8ujjyex.fsf@assaris.sics.se> <19990510132849.A4470@argo.cit.nih.gov> <19990511015843.A874@csz127.cs.ust.hk> <5llnevrcl2.fsf@assaris.sics.se> <19990512114626.C874@csz127.cs.ust.hk> <5lu2ti3onj.fsf@assaris.sics.se> <19990512123037.D874@csz127.cs.ust.hk>
Mime-Version: 1.0 (generated by tm-edit 7.68)
Content-Type: multipart/mixed;
boundary="Multipart_Wed_May_12_21:42:50_1999-1"
Content-Transfer-Encoding: 7bit
Date: 12 May 1999 21:42:50 +0200
In-Reply-To: Dominic Lai's message of "Wed, 12 May 1999 12:30:37 +0800"
Message-ID: <5lhfpioz0k.fsf@assaris.sics.se>
Lines: 44
X-Mailer: Gnus v5.5/Emacs 19.34
Sender: owner-arla-drinkers@stacken.kth.se
Precedence: bulk
--Multipart_Wed_May_12_21:42:50_1999-1
Content-Type: text/plain; charset=US-ASCII
Dominic Lai <dominic@cs.ust.hk> writes:
> On Wed, May 12, 1999 at 06:20:00AM +0200, assar@stacken.kth.se (assar@stacken.kth.se) wrote:
> % as -V
> as: WorkShop Compilers 5.0 98/12/21
> % ls -lF /usr/ccs/bin/as
> -rwxr-xr-x 1 bin bin 342072 Jan 13 08:40 /usr/ccs/bin/as*
>
> I wonder if this patched version supplies the new feature
> (.register pseudo-op) which causes the problem in compiling
> lwp routine. :-(
Can you try the appended patch? Thanks.
/assar
--Multipart_Wed_May_12_21:42:50_1999-1
Content-Type: text/plain; charset=US-ASCII
Index: lwp/process.S
===================================================================
RCS file: /usr/local/cvsroot/arla/lwp/process.S,v
retrieving revision 1.18
diff -u -w -u -w -r1.18 process.S
--- process.S 1999/01/13 14:38:48 1.18
+++ process.S 1999/05/12 19:38:30
@@ -342,6 +342,13 @@
topstack = 0
globals = 8
+ /* These declarations are apparently required */
+
+ .register %g2, g2
+ .register %g3, g3
+ .register %g6, g6
+ .register %g7, g7
+
stx %fp,[%i1+topstack] ! area1->topstack = sp
stx %g1, [%i1 + globals + 0] /* Save all globals just in case */
--Multipart_Wed_May_12_21:42:50_1999-1--