summaryrefslogtreecommitdiffstats
path: root/dex2oat
diff options
context:
space:
mode:
authorDavid Srbecky <dsrbecky@google.com>2015-04-13 20:00:53 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2015-04-13 20:00:54 +0000
commit4af290af4e89cfbc3a4e1ada79909ccee353361a (patch)
tree532d86c2bc0e3693876be225d56250295840db39 /dex2oat
parentdaba9dff2ba0160332fe54ab14fc4283b8ea86fb (diff)
parent7f49e672bc943c49ca8af438ae4bd61b95fe364b (diff)
downloadart-4af290af4e89cfbc3a4e1ada79909ccee353361a.zip
art-4af290af4e89cfbc3a4e1ada79909ccee353361a.tar.gz
art-4af290af4e89cfbc3a4e1ada79909ccee353361a.tar.bz2
Merge "Remove the --gen-gdb-info compiler option."
Diffstat (limited to 'dex2oat')
-rw-r--r--dex2oat/dex2oat.cc9
1 files changed, 0 insertions, 9 deletions
diff --git a/dex2oat/dex2oat.cc b/dex2oat/dex2oat.cc
index 6af6f18..143dacd 100644
--- a/dex2oat/dex2oat.cc
+++ b/dex2oat/dex2oat.cc
@@ -497,7 +497,6 @@ class Dex2Oat FINAL {
bool include_patch_information = CompilerOptions::kDefaultIncludePatchInformation;
bool include_debug_symbols = kIsDebugBuild;
bool watch_dog_enabled = true;
- bool generate_gdb_information = kIsDebugBuild;
bool abort_on_hard_verifier_error = false;
bool requested_specific_compiler = false;
@@ -541,12 +540,6 @@ class Dex2Oat FINAL {
watch_dog_enabled = true;
} else if (option == "--no-watch-dog") {
watch_dog_enabled = false;
- } else if (option == "--gen-gdb-info") {
- generate_gdb_information = true;
- // Debug symbols are needed for gdb information.
- include_debug_symbols = true;
- } else if (option == "--no-gen-gdb-info") {
- generate_gdb_information = false;
} else if (option.starts_with("-j")) {
const char* thread_count_str = option.substr(strlen("-j")).data();
if (!ParseUint(thread_count_str, &thread_count_)) {
@@ -684,7 +677,6 @@ class Dex2Oat FINAL {
include_debug_symbols = true;
} else if (option == "--no-include-debug-symbols" || option == "--strip-symbols") {
include_debug_symbols = false;
- generate_gdb_information = false; // Depends on debug symbols, see above.
} else if (option == "--debuggable") {
debuggable = true;
} else if (option.starts_with("--profile-file=")) {
@@ -936,7 +928,6 @@ class Dex2Oat FINAL {
small_method_threshold,
tiny_method_threshold,
num_dex_methods_threshold,
- generate_gdb_information,
include_patch_information,
top_k_profile_threshold,
debuggable,