Fix build on arm64

This commit is contained in:
Nedko Arnaudov 2022-08-20 18:34:52 +03:00
parent 2c69d70716
commit 1c9ebe868f
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@
#define SIGINFO_MAX_BT_FRAMES 20
#if defined(SA_SIGINFO) && !defined(__arm__) && !defined(__ia64__) && !defined(__alpha__) && !defined (__FreeBSD_kernel__) && !defined (__sh__) && !defined(__APPLE__)
#if defined(SA_SIGINFO) && !defined(__arm__) && !defined(__ia64__) && !defined(__alpha__) && !defined (__FreeBSD_kernel__) && !defined (__sh__) && !defined(__APPLE__) && !defined(__aarch64__)
# define USE_UCONTEXT
# include <ucontext.h>
#endif