mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-11-08 02:18:11 +01:00
790be1e40d
"make check" passed. ====================================================== All 34 tests behaved as expected (2 expected failures) ====================================================== Zhi-Gang Liu @ Tilera
37 lines
1,009 B
C
37 lines
1,009 B
C
/* Provide a real file - not a symlink - as it would cause multiarch conflicts
|
|
when multiple different arch releases are installed simultaneously. */
|
|
|
|
#ifndef UNW_REMOTE_ONLY
|
|
|
|
#if defined __aarch64__
|
|
# include "tdep-aarch64/libunwind_i.h"
|
|
#elif defined __arm__
|
|
# include "tdep-arm/libunwind_i.h"
|
|
#elif defined __hppa__
|
|
# include "tdep-hppa/libunwind_i.h"
|
|
#elif defined __ia64__
|
|
# include "tdep-ia64/libunwind_i.h"
|
|
#elif defined __mips__
|
|
# include "tdep-mips/libunwind_i.h"
|
|
#elif defined __powerpc__ && !defined __powerpc64__
|
|
# include "tdep-ppc32/libunwind_i.h"
|
|
#elif defined __powerpc64__
|
|
# include "tdep-ppc64/libunwind_i.h"
|
|
#elif defined __sh__
|
|
# include "tdep-sh/libunwind_i.h"
|
|
#elif defined __i386__
|
|
# include "tdep-x86/libunwind_i.h"
|
|
#elif defined __x86_64__
|
|
# include "tdep-x86_64/libunwind_i.h"
|
|
#elif defined __tilegx__
|
|
# include "tdep-tilegx/libunwind_i.h"
|
|
#else
|
|
# error "Unsupported arch"
|
|
#endif
|
|
|
|
|
|
#else /* UNW_REMOTE_ONLY */
|
|
|
|
# include "tdep-@arch@/libunwind_i.h"
|
|
|
|
#endif /* UNW_REMOTE_ONLY */
|