Platform options are no longer experimental.

RELNOTES: The --host_platform and --platform flags are no longer experimental.
PiperOrigin-RevId: 177863761
diff --git a/compile.sh b/compile.sh
index 076dd24..8a8a584 100755
--- a/compile.sh
+++ b/compile.sh
@@ -86,8 +86,8 @@
 # We set host and target platform directly since the defaults in @bazel_tools
 # have not yet been generated.
 bazel_build "src:bazel${EXE_EXT}" \
-  --experimental_host_platform=//tools/platforms:host_platform \
-  --experimental_platforms=//tools/platforms:target_platform \
+  --host_platform=//tools/platforms:host_platform \
+  --platforms=//tools/platforms:target_platform \
   || fail "Could not build Bazel"
 bazel_bin_path="$(get_bazel_bin_path)/src/bazel${EXE_EXT}"
 [ -e "$bazel_bin_path" ] \