Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

build clang8 only when $BUILD_CLANG8 is "true" #7228

Merged
merged 1 commit into from
Apr 26, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/eosio_build_amazon.sh
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ if [ $? -ne 0 ]; then exit -1; fi

printf "\\n"

if [ $PIN_COMPILER ]; then
if [ "$BUILD_CLANG8" = "true" ]; then
printf "Checking Clang 8 support...\\n"
if [ ! -d $CLANG8_ROOT ] || [ $FORCE_BUILD ]; then
printf "Installing Clang 8...\\n"
Expand Down
2 changes: 1 addition & 1 deletion scripts/eosio_build_centos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ printf "\\n"


export CPATH="${CPATH}:${PYTHON3PATH}/root/usr/include/python3.6m" # m on the end causes problems with boost finding python3
if [ $PIN_COMPILER ]; then
if [ "$BUILD_CLANG8" = "true" ]; then
printf "Checking Clang 8 support...\\n"
if [ ! -d $CLANG8_ROOT ] || [ $FORCE_BUILD ]; then
printf "Installing Clang 8...\\n"
Expand Down
2 changes: 1 addition & 1 deletion scripts/eosio_build_darwin.sh
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ fi
cd ..
printf "\\n"

if $PIN_COMPILER; then
if [ "$BUILD_CLANG8" = "true" ]; then
printf "Checking Clang 8 support...\\n"
if [ ! -d $CLANG8_ROOT ] || [ $FORCE_BUILD ]; then
printf "Installing Clang 8...\\n"
Expand Down
2 changes: 1 addition & 1 deletion scripts/eosio_build_ubuntu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ if [ $? -ne 0 ]; then exit -1; fi

printf "\\n"

if [ $PIN_COMPILER ]; then
if [ "$BUILD_CLANG8" = "true" ]; then
printf "Checking Clang 8 support...\\n"
if [ ! -d $CLANG8_ROOT ] || [ $FORCE_BUILD ]; then
printf "Installing Clang 8...\\n"
Expand Down