diff options
Diffstat (limited to 'libunwind/src/config.h')
-rw-r--r-- | libunwind/src/config.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libunwind/src/config.h b/libunwind/src/config.h index dcd3cef94552..842fd829af19 100644 --- a/libunwind/src/config.h +++ b/libunwind/src/config.h @@ -102,9 +102,10 @@ #if defined(__i386__) || defined(__x86_64__) || \ defined(__ppc__) || defined(__ppc64__) || defined(__powerpc64__) || \ (!defined(__APPLE__) && defined(__arm__)) || \ - (defined(__arm64__) || defined(__aarch64__)) || \ + defined(__aarch64__) || \ defined(__mips__) || \ - defined(__riscv) + defined(__riscv) || \ + defined(__hexagon__) #if !defined(_LIBUNWIND_BUILD_SJLJ_APIS) #define _LIBUNWIND_BUILD_ZERO_COST_APIS #endif @@ -122,8 +123,7 @@ #else #define _LIBUNWIND_ABORT(msg) \ do { \ - fprintf(stderr, "libunwind: %s %s:%d - %s\n", __func__, __FILE__, \ - __LINE__, msg); \ + fprintf(stderr, "libunwind: %s - %s\n", __func__, msg); \ fflush(stderr); \ abort(); \ } while (0) |