mirror of
https://github.com/apache/impala.git
synced 2026-02-03 09:00:39 -05:00
We had four scripts doing roughly the same thing - calling cmake and then calling make_impala.sh. This patch pushes the cmake call into make_impala.sh and then changes make_[asan|debug|release].sh to be trivial one-line calls into make_impala.sh. This patch also removes the PGO build, which is no longer used and no longer worked. Change-Id: Ib5c8ba910e52b030c172678f86db7d56e3f8c306 Reviewed-on: http://gerrit.ent.cloudera.com:8080/3001 Reviewed-by: Henry Robinson <henry@cloudera.com> Tested-by: jenkins Reviewed-on: http://gerrit.ent.cloudera.com:8080/3621
17 lines
666 B
Bash
Executable File
17 lines
666 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright 2012 Cloudera Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
$IMPALA_HOME/bin/make_impala.sh -clean -build_type=Address_Sanitizer $*
|