Skip to content

Commit 00f8d65

Browse files
katrecopybara-github
authored andcommitted
Convert the bootstrap system to using improved host platform detection.
Part of bazelbuild#6849. Closes bazelbuild#9051. PiperOrigin-RevId: 261196683
1 parent d433a5f commit 00f8d65

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

compile.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,12 @@ source scripts/bootstrap/bootstrap.sh
6161
new_step 'Building Bazel with Bazel'
6262
display "."
6363
log "Building output/bazel"
64-
# We set host and target platform directly since the defaults in @bazel_tools
65-
# have not yet been generated.
64+
# We set host and target platform directly because we are building for the local
65+
# host.
6666
bazel_build "src:bazel_nojdk${EXE_EXT}" \
6767
--action_env=PATH \
68-
--host_platform=@bazel_tools//platforms:host_platform \
69-
--platforms=@bazel_tools//platforms:target_platform \
68+
--host_platform=@local_config_platform//:host \
69+
--platforms=@local_config_platform//:host \
7070
|| fail "Could not build Bazel"
7171
bazel_bin_path="$(get_bazel_bin_path)/src/bazel_nojdk${EXE_EXT}"
7272
[ -e "$bazel_bin_path" ] \

scripts/bootstrap/compile.sh

+1
Original file line numberDiff line numberDiff line change
@@ -301,6 +301,7 @@ EOF
301301
cat <<EOF >${OUTPUT_DIR}/classes/com/google/devtools/build/lib/bazel/rules/tools.WORKSPACE
302302
local_repository(name = 'bazel_tools', path = '${BAZEL_TOOLS_REPO}')
303303
bind(name = "cc_toolchain", actual = "@bazel_tools//tools/cpp:default-toolchain")
304+
local_config_platform(name = 'local_config_platform')
304305
EOF
305306

306307
create_deploy_jar "libblaze" "com.google.devtools.build.lib.bazel.Bazel" \

0 commit comments

Comments
 (0)