Skip to content

Commit

Permalink
Flip --incompatible_objc_framework_cleanup flag to true
Browse files Browse the repository at this point in the history
    RELNOTES[INC]: cleanup that affects user provided apple frameworks is
    now enabled by default.  See
    bazelbuild/bazel#7944 for more info.

    PiperOrigin-RevId: 250743310
  • Loading branch information
Luca Di Grazia committed Sep 4, 2022
1 parent 450fd26 commit af446d2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -140,9 +140,11 @@ public class StarlarkSemanticsOptions extends OptionsBase implements Serializabl
+ "debugging.")
public boolean experimentalPlatformsApi;

// TODO(cparsons): Resolve and finalize the transition() API. The transition implementation
// function should accept two mandatory parameters, 'settings' and 'attr'.
@Option(
name = "experimental_starlark_config_transitions",
defaultValue = "true",
defaultValue = "false",
documentationCategory = OptionDocumentationCategory.STARLARK_SEMANTICS,
effectTags = {OptionEffectTag.LOADING_AND_ANALYSIS},
metadataTags = {OptionMetadataTag.EXPERIMENTAL},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ public static Builder builderWithDefaults() {
.experimentalGoogleLegacyApi(false)
.experimentalJavaCommonCreateProviderEnabledPackages(ImmutableList.of())
.experimentalPlatformsApi(false)
.experimentalStarlarkConfigTransitions(true)
.experimentalStarlarkConfigTransitions(false)
.experimentalStarlarkUnusedInputsList(false)
.incompatibleBzlDisallowLoadAfterStatement(true)
.incompatibleDepsetIsNotIterable(false)
Expand Down

0 comments on commit af446d2

Please sign in to comment.