From adc3d0fa1fb19bb785a97b296d225961c41a4336 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20P=C3=B6chtrager?= Date: Sun, 4 Oct 2015 19:07:55 +0200 Subject: [PATCH] build_clang.sh: Do not bootstrap Clang on Cygwin --- build_clang.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/build_clang.sh b/build_clang.sh index a46420b..7280525 100755 --- a/build_clang.sh +++ b/build_clang.sh @@ -9,6 +9,10 @@ source tools/tools.sh mkdir -p $BUILD_DIR +if [[ $(uname -s) == CYGWIN* ]]; then + DISABLE_BOOTSTRAP=1 +fi + if [ -z "$SKIP_GCC_CHECK" ]; then if [ $PLATFORM != "Darwin" -a $PLATFORM != "FreeBSD" ]; then set +e @@ -79,6 +83,7 @@ echo "Building Clang/LLVM $CLANG_VERSION may take a long time." echo "Installation Prefix: $INSTALLPREFIX" if [ -z "$UNATTENDED" ]; then + echo "" read -p "Press enter to start building." echo "" fi