am 686fddb0: Merge change 8528 into donut
Merge commit '686fddb069e0031d92453703979acd7d699cf761' * commit '686fddb069e0031d92453703979acd7d699cf761': Allow override of default symbol location for native heap library resolution
This commit is contained in:
committed by
Android Git Automerger
commit
ed0b01a717
@@ -133,7 +133,10 @@ public class Addr2Line {
|
||||
// to synchronize this code.
|
||||
|
||||
// get the output directory.
|
||||
String symbols = DdmUiPreferences.getSymbolDirectory();
|
||||
String symbols = System.getenv("ANDROID_SYMBOLS");
|
||||
if (symbols == null) {
|
||||
symbols = DdmUiPreferences.getSymbolDirectory();
|
||||
}
|
||||
|
||||
// build the command line
|
||||
String[] command = new String[5];
|
||||
|
||||
Reference in New Issue
Block a user