From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: ludo@gnu.org (Ludovic =?iso-8859-1?Q?Court=E8s?=) Newsgroups: gmane.lisp.guile.bugs Subject: Re: stack overflow / partial success Date: Thu, 14 Feb 2008 09:38:06 +0100 Message-ID: <87r6fgndap.fsf@gnu.org> References: <47B2A8DF.9070004@tammer.net> <87tzkd8bvz.fsf@gnu.org> <87ejbh8ben.fsf@gnu.org> <47B2D88F.1040505@tammer.net> <87ir0tvx6e.fsf@inria.fr> <47B3EF9A.4090400@tammer.net> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1202978317 8734 80.91.229.12 (14 Feb 2008 08:38:37 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 14 Feb 2008 08:38:37 +0000 (UTC) To: bug-guile@gnu.org Original-X-From: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Thu Feb 14 09:39:00 2008 Return-path: Envelope-to: guile-bugs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1JPZcQ-000289-FK for guile-bugs@m.gmane.org; Thu, 14 Feb 2008 09:38:58 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JPZbw-0004TC-QI for guile-bugs@m.gmane.org; Thu, 14 Feb 2008 03:38:28 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JPZbn-0004T3-Fn for bug-guile@gnu.org; Thu, 14 Feb 2008 03:38:19 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JPZbm-0004Sl-45 for bug-guile@gnu.org; Thu, 14 Feb 2008 03:38:18 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JPZbl-0004Sg-U5 for bug-guile@gnu.org; Thu, 14 Feb 2008 03:38:17 -0500 Original-Received: from main.gmane.org ([80.91.229.2] helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1JPZbl-00089j-D1 for bug-guile@gnu.org; Thu, 14 Feb 2008 03:38:17 -0500 Original-Received: from list by ciao.gmane.org with local (Exim 4.43) id 1JPZbj-0008Ex-4K for bug-guile@gnu.org; Thu, 14 Feb 2008 08:38:15 +0000 Original-Received: from 193.50.110.102 ([193.50.110.102]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 14 Feb 2008 08:38:15 +0000 Original-Received: from ludo by 193.50.110.102 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 14 Feb 2008 08:38:15 +0000 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 45 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: 193.50.110.102 X-Revolutionary-Date: 26 =?iso-8859-1?Q?Pluvi=F4se?= an 216 de la =?iso-8859-1?Q?R=E9volution?= X-PGP-Key-ID: 0xEB1F5364 X-PGP-Key: http://www.laas.fr/~lcourtes/ludovic.asc X-PGP-Fingerprint: 821D 815D 902A 7EAB 5CEE D120 7FBA 3D4F EB1F 5364 X-OS: i686-pc-linux-gnu User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.1 (gnu/linux) Cancel-Lock: sha1:dnzvR+jmo8zt8Q+g1szOJxuTOjA= X-detected-kernel: by monty-python.gnu.org: Linux 2.6, seldom 2.4 (older, 4) X-BeenThere: bug-guile@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Bug reports for GUILE, GNU's Ubiquitous Extension Language" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Errors-To: bug-guile-bounces+guile-bugs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.bugs:3795 Archived-At: Hi Rainer, Rainer Tammer writes: > I managed to compile GUILE 1.8.3+ fixes on AIX 6.1 with IBM XL C/C++ 9.0. Good news! > export LDFLAGS="-Wl,-brtl -L/opt/freeware/lib" > export CFLAGS="-D_USE_IRS -Dinline=__inline__ -qtune=auto -O2 > -I/opt/freeware/include" Isn't it the `inline' thing that made it work? You did not include `config.log' and `config.h': normally, these should already define `inline' as `__inline__'. And isn't `-O2' ignored by xlc? Besides, can you explain what `_USE_IRS' is about and whether it's needed? Same for `-brtl'. > FAIL: time.test: strftime: C99 %z format: GMT > FAIL: time.test: strftime: C99 %z format: EST+5 These are the only two failures! ;-) Can you show the result of the following Scheme expressions in Guile: 1. (strftime "%z" (gmtime 0)) 2. (begin (putenv "TZ=GMT+0") (tzset) (let ((tm (localtime 86400))) (strftime "%z" tm))) 3. (begin (putenv "TZ=EST+5") (tzset) (let ((tm (localtime 86400))) (strftime "%z" tm))) Thanks a lot for your help and perseverance! Ludo'.