From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Rob Browning Newsgroups: gmane.lisp.guile.devel Subject: guile 1.6 appears fixed on ia64, powerpc, alpha, and sparc. Date: Sat, 12 Apr 2003 12:48:21 -0500 Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Message-ID: <87adevvc7u.fsf@raven.i.defaultvalue.org> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1050169693 15619 80.91.224.249 (12 Apr 2003 17:48:13 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sat, 12 Apr 2003 17:48:13 +0000 (UTC) Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Sat Apr 12 19:48:09 2003 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 194P6n-00043U-00 for ; Sat, 12 Apr 2003 19:48:09 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 194P7L-0002DG-05 for guile-devel@m.gmane.org; Sat, 12 Apr 2003 13:48:43 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10.13) id 194P73-00027X-00 for guile-devel@gnu.org; Sat, 12 Apr 2003 13:48:25 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10.13) id 194P71-00023W-00 for guile-devel@gnu.org; Sat, 12 Apr 2003 13:48:24 -0400 Original-Received: from dsl093-098-016.wdc1.dsl.speakeasy.net ([66.93.98.16] helo=defaultvalue.org) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 194P71-0001yS-00 for guile-devel@gnu.org; Sat, 12 Apr 2003 13:48:23 -0400 Original-Received: from raven.i.defaultvalue.org (raven.i.defaultvalue.org [192.168.1.7]) by defaultvalue.org (Postfix) with ESMTP id 6AE511408D for ; Sat, 12 Apr 2003 12:48:21 -0500 (CDT) Original-Received: by raven.i.defaultvalue.org (Postfix, from userid 1000) id 3B7C521534A; Sat, 12 Apr 2003 12:48:21 -0500 (CDT) Original-To: guile-devel@gnu.org User-Agent: Gnus/5.090008 (Oort Gnus v0.08) Emacs/21.2 (i386-pc-linux-gnu) X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1b5 Precedence: list List-Id: Developers list for Guile, the GNU extensibility library List-Help: List-Post: List-Subscribe: , List-Archive: List-Unsubscribe: , Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Xref: main.gmane.org gmane.lisp.guile.devel:2161 X-Report-Spam: http://spam.gmane.org/gmane.lisp.guile.devel:2161 I've tested my recent fixes on each, and "make check" seems fine now. I'll release 1.6.4 after I finish committing some of my own fixes and after I hear back about some pending patches. For those interested, the arch fixes were mostly of the while (!SCM_NULLP (t.arg1 = SCM_CDR (t.arg1))) { ... } only works when changed to t.arg1 = SCM_CDR (t.arg1); while (!SCM_NULLP (t.arg1)) { ... t.arg1 = SCM_CDR (t.arg1); } variety, but there was also a sparc bug where we only tested in __scm.h for #ifdef sparc, but judging from gc_os_dep.c, we needed to be doing this: #if defined (sparc) || defined (__sparc__) || defined (__sparc) # define SCM_FLUSH_REGISTER_WINDOWS asm("ta 3") #else # define SCM_FLUSH_REGISTER_WINDOWS /* empty */ #endif -- Rob Browning rlb @defaultvalue.org, @linuxdevel.com, and @debian.org Previously @cs.utexas.edu GPG starting 2002-11-03 = 14DD 432F AE39 534D B592 F9A0 25C8 D377 8C7E 73A4 _______________________________________________ Guile-devel mailing list Guile-devel@gnu.org http://mail.gnu.org/mailman/listinfo/guile-devel