mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-10-31 23:29:26 +01:00
Fix ppc32 build.
Signed-off-by: Jan Kratochvil <jan.kratochvil@redhat.com>
This commit is contained in:
parent
40afb6667d
commit
6aec15799d
2 changed files with 2 additions and 2 deletions
|
@ -79,7 +79,7 @@ get_arch() {
|
||||||
i?86) echo x86;;
|
i?86) echo x86;;
|
||||||
hppa*) echo hppa;;
|
hppa*) echo hppa;;
|
||||||
mips*) echo mips;;
|
mips*) echo mips;;
|
||||||
powerpc64) is_gcc_m64;;
|
powerpc*) is_gcc_m64;;
|
||||||
*) echo $1;;
|
*) echo $1;;
|
||||||
esac
|
esac
|
||||||
}
|
}
|
||||||
|
|
|
@ -146,7 +146,7 @@ _UPTi_find_unwind_table (struct UPT_info *ui, unw_addr_space_t as,
|
||||||
}
|
}
|
||||||
|
|
||||||
#elif UNW_TARGET_X86 || UNW_TARGET_X86_64 || UNW_TARGET_HPPA \
|
#elif UNW_TARGET_X86 || UNW_TARGET_X86_64 || UNW_TARGET_HPPA \
|
||||||
|| UNW_TARGET_PPC64 || UNW_TARGET_ARM
|
|| UNW_TARGET_PPC32 || UNW_TARGET_PPC64 || UNW_TARGET_ARM
|
||||||
|
|
||||||
#include "dwarf-eh.h"
|
#include "dwarf-eh.h"
|
||||||
#include "dwarf_i.h"
|
#include "dwarf_i.h"
|
||||||
|
|
Loading…
Reference in a new issue