Skip to content

Commit

Permalink
Flip --incompatible_disable_legacy_crosstool_fields and --incompatib…
Browse files Browse the repository at this point in the history
…le_disable_expand_if_all_available_in_flag_set

    Fixes #7008
    Fixes #6861

    TESTED=https://buildkite.com/bazel/bazel-at-head-plus-downstream/builds/852#5c90f69e-c5d2-44c1-8067-0bde4cba6f6d (remote execution is fixed after syncing, verified locally)

    RELNOTES: `--incompatible_disable_legacy_crosstool_fields` has been flipped (bazelbuild/bazel#6861)
    `--incompatible_disable_expand_if_all_available_in_flag_set` has been flipped (bazelbuild/bazel#7008)
    PiperOrigin-RevId: 237992006
  • Loading branch information
Luca Di Grazia committed Sep 4, 2022
1 parent e9a0e97 commit df6dc65
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -710,7 +710,7 @@ public Label getFdoPrefetchHintsLabel() {
@Option(
name = "incompatible_disable_legacy_crosstool_fields",
oldName = "experimental_disable_legacy_crosstool_fields",
defaultValue = "false",
defaultValue = "true",
documentationCategory = OptionDocumentationCategory.TOOLCHAIN,
effectTags = {OptionEffectTag.LOADING_AND_ANALYSIS},
metadataTags = {
Expand Down Expand Up @@ -753,7 +753,7 @@ public Label getFdoPrefetchHintsLabel() {

@Option(
name = "incompatible_disable_expand_if_all_available_in_flag_set",
defaultValue = "false",
defaultValue = "true",
documentationCategory = OptionDocumentationCategory.TOOLCHAIN,
effectTags = {OptionEffectTag.LOADING_AND_ANALYSIS},
metadataTags = {
Expand Down

0 comments on commit df6dc65

Please sign in to comment.