Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 5001 invoked from network); 6 Jan 2010 02:10:33 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 6 Jan 2010 02:10:33 -0000 Received: (qmail 39405 invoked by uid 500); 6 Jan 2010 02:10:33 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 39326 invoked by uid 500); 6 Jan 2010 02:10:33 -0000 Mailing-List: contact commits-help@harmony.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@harmony.apache.org Delivered-To: mailing list commits@harmony.apache.org Received: (qmail 39317 invoked by uid 99); 6 Jan 2010 02:10:33 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 06 Jan 2010 02:10:33 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 06 Jan 2010 02:10:32 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id C29AA23889F7; Wed, 6 Jan 2010 02:10:12 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r896303 - /harmony/enhanced/classlib/trunk/modules/archive/src/main/native/zlib/unix/makefile Date: Wed, 06 Jan 2010 02:10:12 -0000 To: commits@harmony.apache.org From: regisxu@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100106021012.C29AA23889F7@eris.apache.org> Author: regisxu Date: Wed Jan 6 02:10:11 2010 New Revision: 896303 URL: http://svn.apache.org/viewvc?rev=896303&view=rev Log: Fix zlib crash on Ubuntu 9.10 with IBM VME change zlib optimization level from "-O3" to "-O2" Modified: harmony/enhanced/classlib/trunk/modules/archive/src/main/native/zlib/unix/makefile Modified: harmony/enhanced/classlib/trunk/modules/archive/src/main/native/zlib/unix/makefile URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/archive/src/main/native/zlib/unix/makefile?rev=896303&r1=896302&r2=896303&view=diff ============================================================================== --- harmony/enhanced/classlib/trunk/modules/archive/src/main/native/zlib/unix/makefile (original) +++ harmony/enhanced/classlib/trunk/modules/archive/src/main/native/zlib/unix/makefile Wed Jan 6 02:10:11 2010 @@ -22,7 +22,7 @@ include $(HY_HDK)/build/make/defines.mk -HYRELEASECFLAGS = -O3 +HYRELEASECFLAGS = -O2 # Further performance improvement on x86 and x86_64 ifneq (,$(findstring x86,$(HY_ARCH)))