From 3d225e288c95902b965e0a06333dfdbe25a637b5 Mon Sep 17 00:00:00 2001 From: Dave MacLachlan Date: Thu, 12 May 2016 11:38:09 -0700 Subject: Fixes up dump_syms build on OS X so it works with ELF. Adds elf.h header from glibc. Updates dwarf2reader.cc so it isn't comparing a unique_ptr against NULL. Moves from MacOS10.5 SDK to latest SDK for Xcode project. Moves from using gcc to clang for dump_syms tests. Disables warning about 'Missing Field In Structure Initializers' to temporarily work around https://bugs.chromium.org/p/google-breakpad/issues/detail?id=697. With this patch all tests form dump_syms pass again using Xcode 7.3 on Mac OS X 10.11. BUG= https://bugs.chromium.org/p/google-breakpad/issues/detail?id=696, https://bugs.chromium.org/p/google-breakpad/issues/detail?id=697 R=mark@chromium.org Review URL: https://codereview.chromium.org/1970903002 . --- src/common/dwarf/dwarf2reader.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/common/dwarf/dwarf2reader.cc') diff --git a/src/common/dwarf/dwarf2reader.cc b/src/common/dwarf/dwarf2reader.cc index dc0e2349..a65b43c8 100644 --- a/src/common/dwarf/dwarf2reader.cc +++ b/src/common/dwarf/dwarf2reader.cc @@ -639,7 +639,7 @@ void CompilationUnit::ProcessSplitDwarf() { } } bool found_in_dwp = false; - if (dwp_reader_ != NULL) { + if (dwp_reader_) { // If we have a .dwp file, read the debug sections for the requested CU. SectionMap sections; dwp_reader_->ReadDebugSectionsForCU(dwo_id_, §ions); -- cgit v1.2.1