diff options
author | Dave MacLachlan <dmaclach@google.com> | 2016-05-12 14:22:59 -0700 |
---|---|---|
committer | Dave MacLachlan <dmaclach@google.com> | 2016-05-12 14:22:59 -0700 |
commit | a84d4fc42639184d81ce06afea7041c79cf42d2e (patch) | |
tree | 41a855fa3343887b52e358cde282941d3d2e2fbb /src/common/mac | |
parent | Fixes up dump_syms build on OS X so it works with ELF. (diff) | |
download | breakpad-a84d4fc42639184d81ce06afea7041c79cf42d2e.tar.xz |
Replaced glibc version of elf.h with musl version of elf.h.
Updated dump_syms xcode project and ran tests.
BUG=
R=vapier@chromium.org
Review URL: https://codereview.chromium.org/1973113002 .
Diffstat (limited to 'src/common/mac')
-rw-r--r-- | src/common/mac/include/features.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/common/mac/include/features.h b/src/common/mac/include/features.h deleted file mode 100644 index 2020c482..00000000 --- a/src/common/mac/include/features.h +++ /dev/null @@ -1,16 +0,0 @@ -// This file is included by third_party/glibc/elf/elf.h -// We use it to map a couple of glibc specific macros -// over to their OS X equivalents. - - -// Map GNU endianness macros over to OS X endianness macros. - -#ifndef __LITTLE_ENDIAN - #define __LITTLE_ENDIAN __ORDER_LITTLE_ENDIAN__ -#endif -#ifndef __BIG_ENDIAN - #define __BIG_ENDIAN __ORDER_BIG_ENDIAN__ -#endif -#ifndef __BYTE_ORDER - #define __BYTE_ORDER __BYTE_ORDER__ -#endif |