diff options
| -rw-r--r-- | libunwind/src/config.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libunwind/src/config.h b/libunwind/src/config.h index bf0c5953510..127dcd6b0f7 100644 --- a/libunwind/src/config.h +++ b/libunwind/src/config.h @@ -82,7 +82,11 @@ #endif #endif -#define _LIBUNWIND_SUPPORT_FRAME_APIS (defined(__i386__) || defined(__x86_64__)) +#if defined(__i386__) || defined(__x86_64__) +#define _LIBUNWIND_SUPPORT_FRAME_APIS 1 +#else +#define _LIBUNWIND_SUPPORT_FRAME_APIS 0 +#endif #if defined(__i386__) || defined(__x86_64__) || \ (!defined(__APPLE__) && defined(__arm__)) || \ |

