Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id B5428200B4B for ; Wed, 15 Jun 2016 21:48:09 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id B3F42160A65; Wed, 15 Jun 2016 19:48:09 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id E3184160A57 for ; Wed, 15 Jun 2016 21:48:08 +0200 (CEST) Received: (qmail 17465 invoked by uid 500); 15 Jun 2016 19:48:07 -0000 Mailing-List: contact commits-help@quickstep.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@quickstep.incubator.apache.org Delivered-To: mailing list commits@quickstep.incubator.apache.org Received: (qmail 17456 invoked by uid 99); 15 Jun 2016 19:48:07 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd2-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 15 Jun 2016 19:48:07 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd2-us-west.apache.org (ASF Mail Server at spamd2-us-west.apache.org) with ESMTP id 899011A0C65 for ; Wed, 15 Jun 2016 19:48:07 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd2-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -4.646 X-Spam-Level: X-Spam-Status: No, score=-4.646 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_LAZY_DOMAIN_SECURITY=1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-1.426] autolearn=disabled Received: from mx1-lw-us.apache.org ([10.40.0.8]) by localhost (spamd2-us-west.apache.org [10.40.0.9]) (amavisd-new, port 10024) with ESMTP id LlZU5jI6VJrl for ; Wed, 15 Jun 2016 19:48:05 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-lw-us.apache.org (ASF Mail Server at mx1-lw-us.apache.org) with SMTP id 561FE5F476 for ; Wed, 15 Jun 2016 19:48:05 +0000 (UTC) Received: (qmail 17359 invoked by uid 99); 15 Jun 2016 19:48:04 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 15 Jun 2016 19:48:04 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 9F41BE03A9; Wed, 15 Jun 2016 19:48:04 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: hakanmemisoglu@apache.org To: commits@quickstep.incubator.apache.org Date: Wed, 15 Jun 2016 19:48:16 -0000 Message-Id: In-Reply-To: <553fff50cee74dbabadaa42d540fd69e@git.apache.org> References: <553fff50cee74dbabadaa42d540fd69e@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [13/50] [abbrv] incubator-quickstep git commit: Revert "Explicitly specify where tcmalloc comes from" (#237) archived-at: Wed, 15 Jun 2016 19:48:09 -0000 Revert "Explicitly specify where tcmalloc comes from" (#237) Project: http://git-wip-us.apache.org/repos/asf/incubator-quickstep/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-quickstep/commit/44eff0d0 Tree: http://git-wip-us.apache.org/repos/asf/incubator-quickstep/tree/44eff0d0 Diff: http://git-wip-us.apache.org/repos/asf/incubator-quickstep/diff/44eff0d0 Branch: refs/heads/decimal-type Commit: 44eff0d0561e330141e1d88fb2e41509c33d4035 Parents: 4403e6c Author: Jignesh Patel Authored: Mon May 23 22:56:22 2016 -0500 Committer: Zuyu Zhang Committed: Wed Jun 8 11:57:45 2016 -0700 ---------------------------------------------------------------------- CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-quickstep/blob/44eff0d0/CMakeLists.txt ---------------------------------------------------------------------- diff --git a/CMakeLists.txt b/CMakeLists.txt index 2ab0f57..dc51ca6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -490,7 +490,9 @@ if(USE_TCMALLOC) CXXFLAGS=${THIRD_PARTY_CXX_FLAGS} BUILD_COMMAND make BUILD_IN_SOURCE 0 - BUILD_BYPRODUCTS /lib/libtcmalloc_minimal.a + # Uncomment the next line to change the path of the build by products + # as some generators, e.g. Ninja, may need it to build properly + # BUILD_BYPRODUCTS /lib/libtcmalloc_minimal.a ) # Static libtcmalloc_minimal.a add_library(libtcmalloc_minimal STATIC IMPORTED)