aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/rules/cpp/CppOptions.java
diff options
context:
space:
mode:
authorGravatar Lukacs Berki <lberki@google.com>2015-07-16 08:16:00 +0000
committerGravatar Philipp Wollermann <philwo@google.com>2015-07-17 13:16:48 +0000
commitb961bb931400044ed91e6b0b596f94fe983f9f17 (patch)
tree11ac5264e4b36e9a362b11fe0c80cbaafe78f275 /src/main/java/com/google/devtools/build/lib/rules/cpp/CppOptions.java
parente8946a75103d60e340f9f52022726ce5b3f5b902 (diff)
*** Reason for rollback *** Breaks LIPO, [] *** Original change description *** Blaze changes to support LLVM profile feedback. -- MOS_MIGRATED_REVID=98382087
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/rules/cpp/CppOptions.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/rules/cpp/CppOptions.java9
1 files changed, 4 insertions, 5 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 7915bb2916..02a6eb91a1 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
@@ -192,8 +192,8 @@ public class CppOptions extends FragmentOptions {
@Option(name = "thin_archives",
defaultValue = "false",
category = "strategy", // but also adds edges to the action graph
- help = "Pass the 'T' flag to ar if supported by the toolchain. "
- + "All supported toolchains support this setting.")
+ help = "Pass the 'T' flag to ar if supported by the toolchain. " +
+ "All supported toolchains support this setting.")
public boolean useThinArchives;
// O intrepid reaper of unused options: Be warned that the [no]start_end_lib
@@ -353,8 +353,7 @@ public class CppOptions extends FragmentOptions {
category = "flags",
implicitRequirements = {"--copt=-Wno-error"},
help = "Generate binaries with FDO instrumentation. Specify the relative " +
- "directory name for the .gcda files at runtime. It also accepts " +
- "an LLVM profile output file path.")
+ "directory name for the .gcda files at runtime.")
public PathFragment fdoInstrument;
@Option(name = "fdo_optimize",
@@ -365,7 +364,7 @@ public class CppOptions extends FragmentOptions {
"an auto profile. This flag also accepts files specified as labels, for " +
"example //foo/bar:file.afdo. Such labels must refer to input files; you may " +
"need to add an exports_files directive to the corresponding package to make " +
- "the file visible to Blaze. It also accepts an indexed LLVM profile file.")
+ "the file visible to Blaze.")
public String fdoOptimize;
@Option(name = "autofdo_lipo_data",