mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 15:42:39 +00:00
2d7cb03120
Since for dowloading some of files wget logging may take 50% of overall log [1]. [1]: https://clickhouse-builds.s3.yandex.net/14315/c32ff4c98cb3b83a12f945eadd180415b7a3b269/clickhouse_build_check/build_log_761119955_1598923036.txt
48 lines
1.3 KiB
Bash
Executable File
48 lines
1.3 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e -x
|
|
|
|
source default-config
|
|
|
|
./install-os-packages.sh curl
|
|
|
|
if [[ "${GCC_SOURCES_VERSION}" == "latest" ]]; then
|
|
GCC_SOURCES_VERSION=$(curl -sSL https://ftpmirror.gnu.org/gcc/ | grep -oE 'gcc-[0-9]+(\.[0-9]+)+' | sort -Vr | head -n1)
|
|
fi
|
|
|
|
GCC_VERSION_SHORT=$(echo "$GCC_SOURCES_VERSION" | grep -oE '[0-9]' | head -n1)
|
|
|
|
echo "Will download ${GCC_SOURCES_VERSION} (short version: $GCC_VERSION_SHORT)."
|
|
|
|
THREADS=$(grep -c ^processor /proc/cpuinfo)
|
|
|
|
mkdir "${WORKSPACE}/gcc"
|
|
pushd "${WORKSPACE}/gcc"
|
|
|
|
wget -nv https://ftpmirror.gnu.org/gcc/${GCC_SOURCES_VERSION}/${GCC_SOURCES_VERSION}.tar.xz
|
|
tar xf ${GCC_SOURCES_VERSION}.tar.xz
|
|
pushd ${GCC_SOURCES_VERSION}
|
|
./contrib/download_prerequisites
|
|
popd
|
|
mkdir gcc-build
|
|
pushd gcc-build
|
|
../${GCC_SOURCES_VERSION}/configure --enable-languages=c,c++ --disable-multilib
|
|
make -j $THREADS
|
|
$SUDO make install
|
|
|
|
popd
|
|
popd
|
|
|
|
$SUDO ln -sf /usr/local/bin/gcc /usr/local/bin/gcc-${GCC_VERSION_SHORT}
|
|
$SUDO ln -sf /usr/local/bin/g++ /usr/local/bin/g++-${GCC_VERSION_SHORT}
|
|
$SUDO ln -sf /usr/local/bin/gcc /usr/local/bin/cc
|
|
$SUDO ln -sf /usr/local/bin/g++ /usr/local/bin/c++
|
|
|
|
echo '/usr/local/lib64' | $SUDO tee /etc/ld.so.conf.d/10_local-lib64.conf
|
|
$SUDO ldconfig
|
|
|
|
hash gcc g++
|
|
gcc --version
|
|
|
|
export CC=gcc-${GCC_VERSION_SHORT}
|
|
export CXX=g++-${GCC_VERSION_SHORT}
|