aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/google/devtools')
-rw-r--r--src/main/java/com/google/devtools/build/lib/rules/cpp/CppOptions.java23
1 files changed, 11 insertions, 12 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/rules/cpp/CppOptions.java b/src/main/java/com/google/devtools/build/lib/rules/cpp/CppOptions.java
index 04e197ce62..822ab07494 100644
--- a/src/main/java/com/google/devtools/build/lib/rules/cpp/CppOptions.java
+++ b/src/main/java/com/google/devtools/build/lib/rules/cpp/CppOptions.java
@@ -383,18 +383,17 @@ public class CppOptions extends FragmentOptions {
public Label customMalloc;
@Option(
- name = "experimental_shortened_obj_file_path",
- defaultValue = "false",
- documentationCategory = OptionDocumentationCategory.OUTPUT_PARAMETERS,
- effectTags = {OptionEffectTag.ACTION_COMMAND_LINES, OptionEffectTag.AFFECTS_OUTPUTS},
- help =
- "When off, object files are generated at _objs/<target_name>/<source_package_path>/"
- + "<source_base_name>.o, otherwise they are shortened to _objs/<target_name>/"
- + "<source_base_name>.o. If there are multiple source files with the same base name, "
- + "to avoid conflict, the object file path is _objs/<target_name>/<N>"
- + "/<source_base_name>.o, where N = the source file's order among all source files "
- + "with the same base name, N starts with 0."
- )
+ name = "experimental_shortened_obj_file_path",
+ defaultValue = "true",
+ documentationCategory = OptionDocumentationCategory.OUTPUT_PARAMETERS,
+ effectTags = {OptionEffectTag.ACTION_COMMAND_LINES, OptionEffectTag.AFFECTS_OUTPUTS},
+ help =
+ "When off, object files are generated at _objs/<target_name>/<source_package_path>/"
+ + "<source_base_name>.o, otherwise they are shortened to _objs/<target_name>/"
+ + "<source_base_name>.o. If there are multiple source files with the same base name, "
+ + "to avoid conflict, the object file path is _objs/<target_name>/<N>"
+ + "/<source_base_name>.o, where N = the source file's order among all source files "
+ + "with the same base name, N starts with 0.")
public boolean shortenObjFilePath;
@Option(