This repository has been archived by the owner on Jul 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 327
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
HAWQ-1799. include libhdfs3 in building path
- Loading branch information
Showing
9 changed files
with
158 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
# Licensed to the Apache Software Foundation (ASF) under one or more | ||
# contributor license agreements. See the NOTICE file distributed with | ||
# this work for additional information regarding copyright ownership. | ||
# The ASF licenses this file to You 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. | ||
|
||
export HAWQ_TOOLCHAIN_PATH=$(cd "$( dirname "${BASH_SOURCE[0]-$0}" )" && pwd)/download | ||
|
||
# GitHub Release for third-party package | ||
# https://github.com/apache/hawq/releases/tag/thirdparty | ||
REPO=https://github.com/apache/hawq/releases/download/thirdparty/ | ||
|
||
# ISA and OS checking | ||
arch=$(uname -m) | ||
case $arch in | ||
x86_64) ;; | ||
*) echo "Not supported on ISA $arch"; return 1; ;; | ||
esac | ||
os=$(uname -s) | ||
case $os in | ||
Darwin) ;; | ||
Linux) ;; | ||
*) echo "Not supported on OS $os"; return 1; ;; | ||
esac | ||
|
||
|
||
### | ||
### macOS | ||
### | ||
if [[ $(uname -s) == Darwin ]]; then | ||
if [ ! -d $HAWQ_TOOLCHAIN_PATH/dependency-Darwin ]; then | ||
(cd $HAWQ_TOOLCHAIN_PATH && curl -OL $REPO/dependency-Darwin.tar.xz) | ||
(cd $HAWQ_TOOLCHAIN_PATH && tar xJf dependency-Darwin.tar.xz -C $HAWQ_TOOLCHAIN_PATH) | ||
ln -snf dependency-Darwin $HAWQ_TOOLCHAIN_PATH/dependency | ||
|
||
for file in $(find $HAWQ_TOOLCHAIN_PATH/dependency/package/bin -name '*' -type f) $(find $HAWQ_TOOLCHAIN_PATH/dependency/package/lib -name '*.dylib' -type f); do | ||
if [[ $(file $file | grep Mach-O) ]]; then | ||
install_name_tool -add_rpath $HAWQ_TOOLCHAIN_PATH/dependency/package/lib $file 2>/dev/null || true | ||
fi | ||
done | ||
install_name_tool -add_rpath $HAWQ_TOOLCHAIN_PATH/dependency/package/lib/perl5/5.28.0/darwin-thread-multi-2level/CORE/ $HAWQ_TOOLCHAIN_PATH/dependency/package/bin/perl | ||
fi | ||
|
||
export MAKEFLAGS=-j$(sysctl -n hw.ncpu) | ||
export CFLAGS="$CFLAGS -w" | ||
export LDFLAGS="$LDFLAGS -Wl,-rpath,$HAWQ_TOOLCHAIN_PATH/dependency/package/lib" | ||
fi | ||
|
||
|
||
|
||
### | ||
### Linux | ||
### | ||
if [[ $(uname -s) == Linux ]]; then | ||
if [ ! -d $HAWQ_TOOLCHAIN_PATH/gcc ]; then | ||
(cd $HAWQ_TOOLCHAIN_PATH && curl -OL $REPO/gcc-7.4.0-x86_64-linux-sles11.4.tar.xz) | ||
(cd $HAWQ_TOOLCHAIN_PATH && tar xJf gcc-7.4.0-x86_64-linux-sles11.4.tar.xz -C $HAWQ_TOOLCHAIN_PATH) | ||
ln -snf gcc-7.4.0-x86_64-linux-sles11.4 $HAWQ_TOOLCHAIN_PATH/gcc | ||
fi | ||
if [ ! -d $HAWQ_TOOLCHAIN_PATH/cmake ]; then | ||
(cd $HAWQ_TOOLCHAIN_PATH && curl -OL $REPO/cmake-3.12.4-Linux-x86_64.tar.gz) | ||
(cd $HAWQ_TOOLCHAIN_PATH && tar xzf cmake-3.12.4-Linux-x86_64.tar.gz -C $HAWQ_TOOLCHAIN_PATH) | ||
ln -snf cmake-3.12.4-Linux-x86_64 $HAWQ_TOOLCHAIN_PATH/cmake | ||
fi | ||
if [ ! -d $HAWQ_TOOLCHAIN_PATH/dependency-gcc-x86_64-Linux/ ]; then | ||
(cd $HAWQ_TOOLCHAIN_PATH && curl -OL $REPO/dependency-gcc-x86_64-Linux.tar.gz) | ||
(cd $HAWQ_TOOLCHAIN_PATH && tar xzf dependency-gcc-x86_64-Linux.tar.gz -C $HAWQ_TOOLCHAIN_PATH) | ||
ln -snf dependency-gcc-x86_64-Linux $HAWQ_TOOLCHAIN_PATH/dependency | ||
fi | ||
|
||
export PATH=$HAWQ_TOOLCHAIN_PATH/gcc/bin:$HAWQ_TOOLCHAIN_PATH/cmake/bin:$PATH | ||
export LD_LIBRARY_PATH=$HAWQ_TOOLCHAIN_PATH/gcc/lib64/:$LD_LIBRARY_PATH | ||
|
||
export CPATH=$HAWQ_TOOLCHAIN_PATH/gcc/include/c++/7.4.0/:$HAWQ_TOOLCHAIN_PATH/gcc/include/c++/7.4.0/x86_64-pc-linux-gnu/ | ||
export CPATH=$CPATH:/usr/include/x86_64-linux-gnu/ | ||
export LIBRARY_PATH=$HAWQ_TOOLCHAIN_PATH/gcc/lib64/:/usr/lib/x86_64-linux-gnu/ | ||
|
||
unset CPPFLAGS | ||
export CFLAGS='-std=gnu11 -fno-use-linker-plugin' | ||
export CXXFLAGS='-fpermissive -fno-use-linker-plugin' | ||
unset LDFLAGS | ||
|
||
export CC=gcc | ||
export CXX=g++ | ||
export LD=ld | ||
|
||
export MAKEFLAGS=-j$(nproc) | ||
fi | ||
|
||
|
||
|
||
### | ||
find . $HAWQ_TOOLCHAIN_PATH/../../../../ -name CMakeCache.txt -delete | ||
find . $HAWQ_TOOLCHAIN_PATH/../../../../ -name '*build_timestamp' -delete | ||
rm -rf $HAWQ_TOOLCHAIN_PATH/dependency/package/include/hdfs | ||
rm -rf $HAWQ_TOOLCHAIN_PATH/dependency/package/lib/libhdfs3* | ||
source $HAWQ_TOOLCHAIN_PATH/dependency/package/env.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters