Skip to content

Commit

Permalink
Flip --incompatible_disable_legacy_crosstool_fields and --incompatibl…
Browse files Browse the repository at this point in the history
…e_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 (#6861)
`--incompatible_disable_expand_if_all_available_in_flag_set` has been flipped (#7008)
PiperOrigin-RevId: 237992006
  • Loading branch information
hlopko authored and copybara-github committed Mar 12, 2019
1 parent f8023b0 commit c18be0b
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 c18be0b

Please sign in to comment.