diff options
author | ted.mielczarek@gmail.com <ted.mielczarek@gmail.com@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2013-03-06 14:43:02 +0000 |
---|---|---|
committer | ted.mielczarek@gmail.com <ted.mielczarek@gmail.com@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2013-03-06 14:43:02 +0000 |
commit | 46cbbb847eb1554d07b5de1968fbf62af239378a (patch) | |
tree | 1a3cbf7b55d18d0e53ba2050e3be05f38e5c7ba8 | |
parent | Fix some more Win32 compat issues in processor code (diff) | |
download | breakpad-46cbbb847eb1554d07b5de1968fbf62af239378a.tar.xz |
Minor Android fixup for symbol dumping code
Patch by Julian Seward <jseward@acm.org>
R=digit at https://breakpad.appspot.com/521002/
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1123 4c0a9323-5329-0410-9bdc-e9ce6186880e
-rw-r--r-- | src/common/dwarf_cu_to_module.cc | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/src/common/dwarf_cu_to_module.cc b/src/common/dwarf_cu_to_module.cc index 6b4a3ad3..a8b0a29b 100644 --- a/src/common/dwarf_cu_to_module.cc +++ b/src/common/dwarf_cu_to_module.cc @@ -39,7 +39,9 @@ #include "common/dwarf_cu_to_module.h" #include <assert.h> +#if !defined(__ANDROID__) #include <cxxabi.h> +#endif #include <inttypes.h> #include <stdio.h> @@ -314,7 +316,10 @@ void DwarfCUToModule::GenericDIEHandler::ProcessAttributeString( name_attribute_ = AddStringToPool(data); break; case dwarf2reader::DW_AT_MIPS_linkage_name: { - char* demangled = abi::__cxa_demangle(data.c_str(), NULL, NULL, NULL); + char* demangled = NULL; +#if !defined(__ANDROID__) + demangled = abi::__cxa_demangle(data.c_str(), NULL, NULL, NULL); +#endif if (demangled) { demangled_name_ = AddStringToPool(demangled); free(reinterpret_cast<void*>(demangled)); @@ -784,9 +789,9 @@ void DwarfCUToModule::AssignLinesToFunctions() { // complexity from here on out is linear. // Put both our functions and lines in order by address. - sort(functions->begin(), functions->end(), - Module::Function::CompareByAddress); - sort(lines_.begin(), lines_.end(), Module::Line::CompareByAddress); + std::sort(functions->begin(), functions->end(), + Module::Function::CompareByAddress); + std::sort(lines_.begin(), lines_.end(), Module::Line::CompareByAddress); // The last line that we used any piece of. We use this only for // generating warnings. |