aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar Googler <noreply@google.com>2015-08-21 19:38:46 +0000
committerGravatar Han-Wen Nienhuys <hanwen@google.com>2015-08-24 14:02:28 +0000
commitc466e6b3c429cd58ebaa0af16e7c2fcb615f973b (patch)
tree088d734eee40441f19b450f6b736befdff64204d /src
parent50e2eab707cddb687f2870599b6cca010803daca (diff)
Make permanent changes already in tools/blaze.blazerc
RELNOTES: For Objective-C make -DDEBUG part of the -c fastbuild options -- MOS_MIGRATED_REVID=101243825
Diffstat (limited to 'src')
-rw-r--r--src/main/java/com/google/devtools/build/lib/rules/objc/ObjcCommandLineOptions.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/rules/objc/ObjcCommandLineOptions.java b/src/main/java/com/google/devtools/build/lib/rules/objc/ObjcCommandLineOptions.java
index 91e747978e..047fd3c7d9 100644
--- a/src/main/java/com/google/devtools/build/lib/rules/objc/ObjcCommandLineOptions.java
+++ b/src/main/java/com/google/devtools/build/lib/rules/objc/ObjcCommandLineOptions.java
@@ -137,12 +137,11 @@ public class ObjcCommandLineOptions extends FragmentOptions {
+ "built with --cpu set to \"ios_<--ios_cpu>\" for any values in --ios_multi_cpu.")
public boolean enableCcDeps;
- // TODO(bazel-team): Add "-DDEBUG=1" to FASTBUILD_COPTS.
@Option(name = "experimental_objc_fastbuild_options",
- defaultValue = "-O0",
+ defaultValue = "-O0,-DDEBUG",
category = "undocumented",
converter = CommaSeparatedOptionListConverter.class,
- help = "Adds these strings to fastbuild compiler options.")
+ help = "Uses these strings as objc fastbuild compiler options.")
public List<String> fastbuildOptions;
@Option(name = "objc_enable_binary_stripping",