aboutsummaryrefslogtreecommitdiffhomepage
path: root/site/docs/bazel-user-manual.html
diff options
context:
space:
mode:
authorGravatar Damien Martin-Guillerez <dmarting@google.com>2015-04-20 14:08:30 +0000
committerGravatar Han-Wen Nienhuys <hanwen@google.com>2015-04-20 16:45:05 +0000
commite36c2b85ba8300a635f3cd6eeba6ebd6c4007313 (patch)
tree2cde249fe2a7a6990390de14e2f1a80509b36ca7 /site/docs/bazel-user-manual.html
parent59fc7f323cb55a9d2a3965fd0840f86fdecbb404 (diff)
Removing documentation about non-functionnal flags.
Fix #140 -- MOS_MIGRATED_REVID=91581443
Diffstat (limited to 'site/docs/bazel-user-manual.html')
-rw-r--r--site/docs/bazel-user-manual.html34
1 files changed, 2 insertions, 32 deletions
diff --git a/site/docs/bazel-user-manual.html b/site/docs/bazel-user-manual.html
index c39819322d..2b52f197bc 100644
--- a/site/docs/bazel-user-manual.html
+++ b/site/docs/bazel-user-manual.html
@@ -1475,8 +1475,9 @@ Subtractive patterns:
javac and before the per-rule options. The last specification of
any option to javac wins. The default options for javac are:
</p>
+
<pre>
- -g -source 7 -target 7 -encoding UTF-8 -Xlint:divzero,empty,path,-options -Werror:+divzero,+empty,+path
+ -source 8 -target 8 -encoding UTF-8
</pre>
<p>
Note that changing <code class='flag'>--javacopt</code> settings will force a recompilation
@@ -1485,37 +1486,6 @@ Subtractive patterns:
command line <em>after</em> these options.
</p>
-<h5 id='-Werror'><code>-Werror:<var>(+|-)warning[,(+|-)warning]*</var></code></h5>
-
-<p>
- This javac option enables selective treating of warnings as errors. To specify
- all or none of the warnings, use <code>+all</code> or <code>-all</code>.
- The last specification for any warning wins. A typical value that enables all
- warnings as errors except those that may be caused upstream is:
-</p>
-<pre>
- -Werror:+all,-deprecation,-unchecked
-</pre>
-
-<p>
- The divzero and empty javac warnings are promoted to errors by default. These
- errors cannot be disabled from the Bazel command line or the BUILD file.
- However, in extreme cases they may be disabled by adding a
- <code>@SuppressWarnings({"divzero", "empty"})</code> annotation to your Java
- source.
-</p>
-
-<h5 id='-extra_checks'><code>-extra_checks[:(off|on)]</code></h5>
-
-<p>
- This javac option enables extra correctness checks. Any problems found will
- be presented as errors.
- Either <code>-extra_checks</code> or <code>-extra_checks:on</code> may be used
- to force the checks to be turned on. <code>-extra_checks:off</code> completely
- disables the analysis.
- When this option is not specified, the default behavior is used.
-</p>
-
<h4 id='flag--strict_java_deps'><code class='flag'>--strict_java_deps
(default|strict|off|warn|error)</code></h4>
<p>