Return-Path: X-Original-To: apmail-accumulo-commits-archive@www.apache.org Delivered-To: apmail-accumulo-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 3DB6B11798 for ; Fri, 16 May 2014 19:03:19 +0000 (UTC) Received: (qmail 79243 invoked by uid 500); 16 May 2014 17:48:24 -0000 Delivered-To: apmail-accumulo-commits-archive@accumulo.apache.org Received: (qmail 59328 invoked by uid 500); 16 May 2014 17:23:31 -0000 Mailing-List: contact commits-help@accumulo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@accumulo.apache.org Delivered-To: mailing list commits@accumulo.apache.org Received: (qmail 20754 invoked by uid 99); 16 May 2014 16:59:36 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 May 2014 16:59:36 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 842BF92DD31; Fri, 16 May 2014 16:59:36 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: ctubbsii@apache.org To: commits@accumulo.apache.org Date: Fri, 16 May 2014 16:59:37 -0000 Message-Id: In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [2/8] git commit: ACCUMULO-2762 Use more compiler optimizations for 1.5 native lib ACCUMULO-2762 Use more compiler optimizations for 1.5 native lib Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/c16f1058 Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/c16f1058 Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/c16f1058 Branch: refs/heads/1.6.1-SNAPSHOT Commit: c16f105824ff5e4d56105b9b3cc20d866b0e3b8d Parents: f83f9f9 Author: Christopher Tubbs Authored: Fri May 16 12:55:41 2014 -0400 Committer: Christopher Tubbs Committed: Fri May 16 12:55:41 2014 -0400 ---------------------------------------------------------------------- server/src/main/c++/nativeMap/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/c16f1058/server/src/main/c++/nativeMap/Makefile ---------------------------------------------------------------------- diff --git a/server/src/main/c++/nativeMap/Makefile b/server/src/main/c++/nativeMap/Makefile index 2ff8ea5..8b3ef9a 100644 --- a/server/src/main/c++/nativeMap/Makefile +++ b/server/src/main/c++/nativeMap/Makefile @@ -39,7 +39,7 @@ ifeq ($(shell uname),Linux) LIBS := $(LIBS_$(DARCH)) endif - CXXFLAGS=-g -fPIC -shared -O2 -fno-omit-frame-pointer -fno-strict-aliasing -Wall -I$(JAVA_HOME)/include/linux -I$(JAVA_HOME)/include + CXXFLAGS=-g -fPIC -shared -O3 -Wall -I$(JAVA_HOME)/include/linux -I$(JAVA_HOME)/include endif ifeq ($(shell uname),Darwin)