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

Commit

Permalink
Merge pull request #7228 from EOSIO/macos_dont_build_clang8_unless_ne…
Browse files Browse the repository at this point in the history
…eded

build clang8 only when $BUILD_CLANG8 is "true"
  • Loading branch information
arhag authored Apr 26, 2019
2 parents 0349bfb + f4f5879 commit ca3a115
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
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

0 comments on commit ca3a115

Please sign in to comment.