diff options
author | Gary Palter <palter@clozure.com> | 2020-11-28 23:01:17 -0500 |
---|---|---|
committer | Gary Palter <palter@clozure.com> | 2020-11-28 23:01:17 -0500 |
commit | 97bb6ccc9ed75f38e339728642a9154004a93647 (patch) | |
tree | 827f7348508d2abe15cea5de782f5c7454b1ff9a /lisp/core.c | |
parent | 420fa2a8a4dd7294d0b23696103d7887ae570e43 (diff) |
Minimal changes to build on Apple silicon (i.e., new Apple M1 Macs)
Diffstat (limited to 'lisp/core.c')
-rw-r--r-- | lisp/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/core.c b/lisp/core.c index 46930a2..af40fea 100644 --- a/lisp/core.c +++ b/lisp/core.c @@ -62,7 +62,7 @@ typedef struct _SeqInfo { break; \ } -#ifdef __UNIXOS2__ +#if defined(__UNIXOS2__) || defined(__arm64__) # define finite(x) isfinite(x) #endif |