aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Luis Fernando Pino Duque <lpino@google.com>2016-12-08 16:19:10 +0000
committerGravatar Irina Iancu <elenairina@google.com>2016-12-08 16:34:58 +0000
commit0f32beda6330bca7d86b219d6624aa18c8cddb1b (patch)
treedaefc11c2fbe1fb6cd3536f704eacbdf0164dcb0
parentbe2913aafa04f505b4293f4e081aaff0ab546c93 (diff)
Remove the -x startup option.
This startup option was deprecated months ago, however it is currently parsed if present in the command line and a warning is shown. Now an error is thrown if it is passed in the command line. RELNOTES[INC]: The deprecated -x startup option has been removed. -- PiperOrigin-RevId: 141441381 MOS_MIGRATED_REVID=141441381
-rw-r--r--src/main/cpp/startup_options.cc3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/main/cpp/startup_options.cc b/src/main/cpp/startup_options.cc
index 75fa396d29..461be46ccd 100644
--- a/src/main/cpp/startup_options.cc
+++ b/src/main/cpp/startup_options.cc
@@ -227,9 +227,6 @@ blaze_exit_code::ExitCode StartupOptions::ProcessArg(
return blaze_exit_code::BAD_ARGV;
}
option_sources["max_idle_secs"] = rcfile;
- } else if (GetNullaryOption(arg, "-x")) {
- fprintf(stderr, "WARNING: The -x startup option is now ignored "
- "and will be removed in a future release\n");
} else if (GetNullaryOption(arg, "--experimental_oom_more_eagerly")) {
oom_more_eagerly = true;
option_sources["experimental_oom_more_eagerly"] = rcfile;