Index: src/Unwind/AddressSpace.hpp =================================================================== --- src/Unwind/AddressSpace.hpp +++ src/Unwind/AddressSpace.hpp @@ -57,9 +57,16 @@ #endif // !defined(_LIBUNWIND_IS_BAREMETAL) #endif // LIBCXXABI_ARM_EHABI -#if defined(__CloudABI__) || defined(__linux__) +#if defined(__CloudABI__) || defined(__FreeBSD__) || defined(__linux__) #if _LIBUNWIND_SUPPORT_DWARF_UNWIND && _LIBUNWIND_SUPPORT_DWARF_INDEX #include +// Macro for machine-independent access to the ELF program headers. This +// macro is not available on some systems (e.g., FreeBSD). On these +// systems the data structures are just called Elf_XXX. Define ElfW() +// locally. +#if !defined(ElfW) +#define ElfW(type) Elf_##type +#endif #include "EHHeaderParser.hpp" #endif #endif