Merge pull request #230 from abrodkin/clang-auto-install

build_clang.sh: Allow unmanned instllation
This commit is contained in:
Thomas Pöchtrager 2020-08-25 12:11:27 +02:00 committed by GitHub
commit cc1823a726
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -130,12 +130,21 @@ else
fi fi
fi fi
echo "" if [ -z "$ENABLE_CLANG_INSTALL" ]; then
echo "Done!" echo ""
echo "" echo "Done!"
echo -n "cd into '$PWD/$stage' and type 'make install' to install " echo ""
echo "clang/llvm to '$INSTALLPREFIX'" echo -n "cd into '$PWD/$stage' and type 'make install' to install "
echo "" echo "clang/llvm to '$INSTALLPREFIX'"
echo ""
else
pushd $stage &>/dev/null
$MAKE install -j $JOBS VERBOSE=1
popd &>/dev/null
echo ""
echo "Done!"
echo ""
fi
popd &>/dev/null # llvm popd &>/dev/null # llvm
popd &>/dev/null popd &>/dev/null