Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | |
Damien Martin-Guillerez | f88f4d8 | 2015-09-25 13:56:55 +0000 | [diff] [blame] | 3 | # Copyright 2014 The Bazel Authors. All rights reserved. |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 4 | # |
| 5 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | # you may not use this file except in compliance with the License. |
| 7 | # You may obtain a copy of the License at |
| 8 | # |
| 9 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | # |
| 11 | # Unless required by applicable law or agreed to in writing, software |
| 12 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | # See the License for the specific language governing permissions and |
| 15 | # limitations under the License. |
| 16 | |
Damien Martin-Guillerez | d47a8ef | 2015-06-10 11:54:50 +0000 | [diff] [blame] | 17 | # This script bootstraps building a Bazel binary without Bazel then |
| 18 | # use this compiled Bazel to bootstrap Bazel itself. It can also |
| 19 | # be provided with a previous version of Bazel to bootstrap Bazel |
| 20 | # itself. |
| 21 | # The resulting binary can be found at output/bazel. |
David Mankin | 5cafe13 | 2015-05-28 20:20:56 +0000 | [diff] [blame] | 22 | |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 23 | set -o errexit |
| 24 | |
| 25 | cd "$(dirname "$0")" |
| 26 | |
Julio Merino | 5909d9d | 2016-02-25 21:44:31 +0000 | [diff] [blame] | 27 | # Set the default verbose mode in buildenv.sh so that we do not display command |
| 28 | # output unless there is a failure. We do this conditionally to offer the user |
| 29 | # a chance of overriding this in case they want to do so. |
| 30 | : ${VERBOSE:=no} |
| 31 | |
Damien Martin-Guillerez | d47a8ef | 2015-06-10 11:54:50 +0000 | [diff] [blame] | 32 | source scripts/bootstrap/buildenv.sh |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 33 | |
Damien Martin-Guillerez | d47a8ef | 2015-06-10 11:54:50 +0000 | [diff] [blame] | 34 | mkdir -p output |
dmarting | 03976a5 | 2017-08-29 12:42:58 +0200 | [diff] [blame] | 35 | : ${BAZEL:=} |
Kristina Chodorow | ac27114 | 2015-03-06 16:00:46 +0000 | [diff] [blame] | 36 | |
Damien Martin-Guillerez | d47a8ef | 2015-06-10 11:54:50 +0000 | [diff] [blame] | 37 | # |
| 38 | # Create an initial binary so we can host ourself |
| 39 | # |
| 40 | if [ ! -x "${BAZEL}" ]; then |
Damien Martin-Guillerez | d47a8ef | 2015-06-10 11:54:50 +0000 | [diff] [blame] | 41 | new_step 'Building Bazel from scratch' |
| 42 | source scripts/bootstrap/compile.sh |
Daniel Wagner-Hall | 13ba331 | 2015-03-20 05:45:45 +0000 | [diff] [blame] | 43 | fi |
| 44 | |
Damien Martin-Guillerez | d47a8ef | 2015-06-10 11:54:50 +0000 | [diff] [blame] | 45 | # |
| 46 | # Bootstrap bazel using the previous bazel binary = release binary |
| 47 | # |
Damien Martin-Guillerez | a377af0 | 2015-06-24 12:04:27 +0000 | [diff] [blame] | 48 | if [ "${EMBED_LABEL-x}" = "x" ]; then |
Damien Martin-Guillerez | d47a8ef | 2015-06-10 11:54:50 +0000 | [diff] [blame] | 49 | # Add a default label when unspecified |
| 50 | git_sha1=$(git_sha1) |
Damien Martin-Guillerez | 28e67b5 | 2016-03-14 11:01:31 +0000 | [diff] [blame] | 51 | EMBED_LABEL="$(get_last_version) (@${git_sha1:-non-git})" |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 52 | fi |
| 53 | |
Damien Martin-Guillerez | 3d796fe | 2016-01-11 10:07:57 +0000 | [diff] [blame] | 54 | if [[ $PLATFORM == "darwin" ]] && \ |
| 55 | xcodebuild -showsdks 2> /dev/null | grep -q '\-sdk iphonesimulator'; then |
Damien Martin-Guillerez | 1540d8f | 2016-09-07 11:49:39 +0000 | [diff] [blame] | 56 | EXTRA_BAZEL_ARGS="${EXTRA_BAZEL_ARGS-} --define IPHONE_SDK=1" |
Dmitry Lomov | ac6ed79 | 2015-12-22 19:24:00 +0000 | [diff] [blame] | 57 | fi |
Yun Peng | cb8a5e2 | 2017-03-08 14:30:49 +0000 | [diff] [blame] | 58 | |
Damien Martin-Guillerez | 3d796fe | 2016-01-11 10:07:57 +0000 | [diff] [blame] | 59 | source scripts/bootstrap/bootstrap.sh |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 60 | |
dmarting | 03976a5 | 2017-08-29 12:42:58 +0200 | [diff] [blame] | 61 | new_step 'Building Bazel with Bazel' |
| 62 | display "." |
| 63 | log "Building output/bazel" |
John Cater | 00f8d65 | 2019-08-01 14:21:54 -0700 | [diff] [blame] | 64 | # We set host and target platform directly because we are building for the local |
| 65 | # host. |
Liam Miller-Cushon | 7c49bd9 | 2018-06-18 09:29:52 -0700 | [diff] [blame] | 66 | bazel_build "src:bazel_nojdk${EXE_EXT}" \ |
Benjamin Peterson | 3bf6857 | 2018-11-19 04:14:04 -0800 | [diff] [blame] | 67 | --action_env=PATH \ |
John Cater | 00f8d65 | 2019-08-01 14:21:54 -0700 | [diff] [blame] | 68 | --host_platform=@local_config_platform//:host \ |
| 69 | --platforms=@local_config_platform//:host \ |
dmarting | 03976a5 | 2017-08-29 12:42:58 +0200 | [diff] [blame] | 70 | || fail "Could not build Bazel" |
Liam Miller-Cushon | 7c49bd9 | 2018-06-18 09:29:52 -0700 | [diff] [blame] | 71 | bazel_bin_path="$(get_bazel_bin_path)/src/bazel_nojdk${EXE_EXT}" |
dmarting | 03976a5 | 2017-08-29 12:42:58 +0200 | [diff] [blame] | 72 | [ -e "$bazel_bin_path" ] \ |
| 73 | || fail "Could not find freshly built Bazel binary at '$bazel_bin_path'" |
| 74 | cp -f "$bazel_bin_path" "output/bazel${EXE_EXT}" \ |
| 75 | || fail "Could not copy '$bazel_bin_path' to 'output/bazel${EXE_EXT}'" |
| 76 | chmod 0755 "output/bazel${EXE_EXT}" |
| 77 | BAZEL="$(pwd)/output/bazel${EXE_EXT}" |
Damien Martin-Guillerez | d6f4808 | 2015-06-05 10:50:43 +0000 | [diff] [blame] | 78 | |
Damien Martin-Guillerez | d47a8ef | 2015-06-10 11:54:50 +0000 | [diff] [blame] | 79 | clear_log |
| 80 | display "Build successful! Binary is here: ${BAZEL}" |