diff options
author | David Srbecky <dsrbecky@google.com> | 2021-04-27 15:22:40 +0100 |
---|---|---|
committer | David Srbecky <dsrbecky@google.com> | 2021-04-30 18:50:33 +0000 |
commit | 9cacdce5a0e3ae57a195e2a6a1ca059808a0ee2f (patch) | |
tree | b6692ebc91574820d64a6c0967083c43c5df3076 /compiler/driver/compiler_options.h | |
parent | 0849c1ca7b10a859d2ce3d2bd84a9b612fbb36e3 (diff) |
Enable mini-debug-info by default.
All paths explicitly enable or disable the command line option.
However, if we missed some or developers use stand-alone tools,
default to working backtraces, which is the common intention.
Change-Id: I1d308f2be881522ecfb945d5f679065e726d32aa
Diffstat (limited to 'compiler/driver/compiler_options.h')
-rw-r--r-- | compiler/driver/compiler_options.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/driver/compiler_options.h b/compiler/driver/compiler_options.h index ed8168a2b3..da75d3741a 100644 --- a/compiler/driver/compiler_options.h +++ b/compiler/driver/compiler_options.h @@ -65,7 +65,7 @@ class CompilerOptions final { static const size_t kDefaultNumDexMethodsThreshold = 900; static constexpr double kDefaultTopKProfileThreshold = 90.0; static const bool kDefaultGenerateDebugInfo = false; - static const bool kDefaultGenerateMiniDebugInfo = false; + static const bool kDefaultGenerateMiniDebugInfo = true; static const size_t kDefaultInlineMaxCodeUnits = 32; static constexpr size_t kUnsetInlineMaxCodeUnits = -1; |