blob: d91583d277cba830c37435b60ad3e1003c1e0183 [file] [log] [blame]
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +01001#!/bin/bash
2
Damien Martin-Guillerezf88f4d82015-09-25 13:56:55 +00003# Copyright 2014 The Bazel Authors. All rights reserved.
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +01004#
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-Guillerezd47a8ef2015-06-10 11:54:50 +000017# 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 Mankin5cafe132015-05-28 20:20:56 +000022
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +010023set -o errexit
24
25cd "$(dirname "$0")"
26
Julio Merino5909d9d2016-02-25 21:44:31 +000027# 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-Guillerezd47a8ef2015-06-10 11:54:50 +000032source scripts/bootstrap/buildenv.sh
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +010033
Damien Martin-Guillerezd47a8ef2015-06-10 11:54:50 +000034mkdir -p output
dmarting03976a52017-08-29 12:42:58 +020035: ${BAZEL:=}
Kristina Chodorowac271142015-03-06 16:00:46 +000036
Damien Martin-Guillerezd47a8ef2015-06-10 11:54:50 +000037#
38# Create an initial binary so we can host ourself
39#
40if [ ! -x "${BAZEL}" ]; then
Damien Martin-Guillerezd47a8ef2015-06-10 11:54:50 +000041 new_step 'Building Bazel from scratch'
42 source scripts/bootstrap/compile.sh
Daniel Wagner-Hall13ba3312015-03-20 05:45:45 +000043fi
44
Damien Martin-Guillerezd47a8ef2015-06-10 11:54:50 +000045#
46# Bootstrap bazel using the previous bazel binary = release binary
47#
Damien Martin-Guillereza377af02015-06-24 12:04:27 +000048if [ "${EMBED_LABEL-x}" = "x" ]; then
Damien Martin-Guillerezd47a8ef2015-06-10 11:54:50 +000049 # Add a default label when unspecified
50 git_sha1=$(git_sha1)
Damien Martin-Guillerez28e67b52016-03-14 11:01:31 +000051 EMBED_LABEL="$(get_last_version) (@${git_sha1:-non-git})"
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +010052fi
53
Damien Martin-Guillerez3d796fe2016-01-11 10:07:57 +000054if [[ $PLATFORM == "darwin" ]] && \
55 xcodebuild -showsdks 2> /dev/null | grep -q '\-sdk iphonesimulator'; then
Damien Martin-Guillerez1540d8f2016-09-07 11:49:39 +000056 EXTRA_BAZEL_ARGS="${EXTRA_BAZEL_ARGS-} --define IPHONE_SDK=1"
Dmitry Lomovac6ed792015-12-22 19:24:00 +000057fi
Yun Pengcb8a5e22017-03-08 14:30:49 +000058
Damien Martin-Guillerez3d796fe2016-01-11 10:07:57 +000059source scripts/bootstrap/bootstrap.sh
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +010060
dmarting03976a52017-08-29 12:42:58 +020061new_step 'Building Bazel with Bazel'
62display "."
63log "Building output/bazel"
John Cater00f8d652019-08-01 14:21:54 -070064# We set host and target platform directly because we are building for the local
65# host.
Liam Miller-Cushon7c49bd92018-06-18 09:29:52 -070066bazel_build "src:bazel_nojdk${EXE_EXT}" \
Benjamin Peterson3bf68572018-11-19 04:14:04 -080067 --action_env=PATH \
John Cater00f8d652019-08-01 14:21:54 -070068 --host_platform=@local_config_platform//:host \
69 --platforms=@local_config_platform//:host \
dmarting03976a52017-08-29 12:42:58 +020070 || fail "Could not build Bazel"
Liam Miller-Cushon7c49bd92018-06-18 09:29:52 -070071bazel_bin_path="$(get_bazel_bin_path)/src/bazel_nojdk${EXE_EXT}"
dmarting03976a52017-08-29 12:42:58 +020072[ -e "$bazel_bin_path" ] \
73 || fail "Could not find freshly built Bazel binary at '$bazel_bin_path'"
74cp -f "$bazel_bin_path" "output/bazel${EXE_EXT}" \
75 || fail "Could not copy '$bazel_bin_path' to 'output/bazel${EXE_EXT}'"
76chmod 0755 "output/bazel${EXE_EXT}"
77BAZEL="$(pwd)/output/bazel${EXE_EXT}"
Damien Martin-Guillerezd6f48082015-06-05 10:50:43 +000078
Damien Martin-Guillerezd47a8ef2015-06-10 11:54:50 +000079clear_log
80display "Build successful! Binary is here: ${BAZEL}"