From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 3374 invoked from network); 29 Jun 2001 15:09:52 -0000 Received: from sunsite.dk (130.225.51.30) by ns1.primenet.com.au with SMTP; 29 Jun 2001 15:09:52 -0000 Received: (qmail 569 invoked by alias); 29 Jun 2001 15:08:51 -0000 Mailing-List: contact zsh-workers-help@sunsite.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 15181 Received: (qmail 553 invoked from network); 29 Jun 2001 15:08:51 -0000 X-Envelope-Sender-Is: Andrej.Borsenkow@mow.siemens.ru (at relayer david.siemens.de) From: "Andrej Borsenkow" To: "Clint Adams" Cc: , Subject: RE: Zsh 4.0.2 + 64bit Solaris 8 Forte 6.1 compiler Date: Fri, 29 Jun 2001 19:09:01 +0400 Message-ID: <000401c100ad$6e063f90$21c9ca95@mow.siemens.ru> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) In-Reply-To: <20010629095154.A24508@dman.com> Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2479.0006 > > > So, what others think? Should we change it to -KPIC for Solaris? > > Except for gcc of course. > Erm ... do we need Solaris special-case? This changes it for all systems using it. > > No. Next thing is - why should zsh default to LP64 (that is > what you mean. > > Zsh already supports 64-bit atithmetic and large files)? Does it fix > > something or adds new features? > > It shouldn't; it should default to the default. > I guess, yes. Especially as with this patch it is enough to just say CC='cc -xarch-sparcv9'; no need to set individual flags. -andrej Index: zshconfig.ac =================================================================== RCS file: /cvsroot/zsh/zsh/zshconfig.ac,v retrieving revision 1.10 diff -u -r1.10 zshconfig.ac --- zshconfig.ac 2001/06/29 14:59:42 1.10 +++ zshconfig.ac 2001/06/29 15:04:13 @@ -1625,7 +1625,7 @@ case "$host_os" in hpux*) DLCFLAGS="${DLCFLAGS=+z}" ;; sunos*) DLCFLAGS="${DLCFLAGS=-pic}" ;; - solaris*|sysv4*|esix*) DLCFLAGS="${DLCFLAGS=-Kpic}" ;; + solaris*|sysv4*|esix*) DLCFLAGS="${DLCFLAGS=-KPIC}" ;; esac fi case "$host_os" in