diff options
author | David Srbecky <dsrbecky@google.com> | 2015-04-12 09:52:31 +0100 |
---|---|---|
committer | David Srbecky <dsrbecky@google.com> | 2015-04-12 09:52:31 +0100 |
commit | 7f49e672bc943c49ca8af438ae4bd61b95fe364b (patch) | |
tree | 3fcb3820c5046ea30e78c8264327536041b5cdad /dex2oat/dex2oat.cc | |
parent | 58565098b2298041ccc97371a3cc486df88d51b3 (diff) | |
download | art-7f49e672bc943c49ca8af438ae4bd61b95fe364b.zip art-7f49e672bc943c49ca8af438ae4bd61b95fe364b.tar.gz art-7f49e672bc943c49ca8af438ae4bd61b95fe364b.tar.bz2 |
Remove the --gen-gdb-info compiler option.
It is never used. We generally use --include-debug-symbols instead.
Change-Id: I933495cd85ab4f7dfcf3ef3cd2d943d4b870ffeb
Diffstat (limited to 'dex2oat/dex2oat.cc')
-rw-r--r-- | dex2oat/dex2oat.cc | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/dex2oat/dex2oat.cc b/dex2oat/dex2oat.cc index 10949e4..6a85d62 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, |