Skip to content

Commit c46f9ee

Browse files
googlewaltcopybara-github
authored andcommitted
Flip --incompatible_objc_provider_remove_compile_info to true
RELNOTES: The flag `--incompatible_objc_provider_remove_compile_info` is enabled by default. See #11359. PiperOrigin-RevId: 338339157
1 parent 34ee285 commit c46f9ee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/google/devtools/build/lib/packages/semantics/BuildLanguageOptions.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -565,7 +565,7 @@ public class BuildLanguageOptions extends OptionsBase implements Serializable {
565565

566566
@Option(
567567
name = "incompatible_objc_provider_remove_compile_info",
568-
defaultValue = "false",
568+
defaultValue = "true",
569569
documentationCategory = OptionDocumentationCategory.STARLARK_SEMANTICS,
570570
effectTags = {OptionEffectTag.BUILD_FILE_SEMANTICS},
571571
metadataTags = {
@@ -729,7 +729,7 @@ public StarlarkSemantics toStarlarkSemantics() {
729729
public static final String INCOMPATIBLE_NO_RULE_OUTPUTS_PARAM =
730730
"-incompatible_no_rule_outputs_param";
731731
public static final String INCOMPATIBLE_OBJC_PROVIDER_REMOVE_COMPILE_INFO =
732-
"-incompatible_objc_provider_remove_compile_info";
732+
"+incompatible_objc_provider_remove_compile_info";
733733
public static final String INCOMPATIBLE_REQUIRE_LINKER_INPUT_CC_API =
734734
"-incompatible_require_linker_input_cc_api";
735735
public static final String INCOMPATIBLE_RESTRICT_STRING_ESCAPES =

0 commit comments

Comments
 (0)