summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorBrian Smith <brian@dbsoft.org>2022-06-09 22:05:20 -0500
committerBrian Smith <brian@dbsoft.org>2022-06-09 22:05:20 -0500
commita977ba55eb80984b38c8f9a31778c948afa55c20 (patch)
tree9c45e3d721b9b3808c190f225cbd73f0c8f51bb5 /config
parent8199a0d551455314809de775164d592c5a4aad9d (diff)
downloaduxp-a977ba55eb80984b38c8f9a31778c948afa55c20.tar.gz
Issue #1905 - Part 3g - Final set of changes connecting ARM64 support for Mac.
Back out some of the xptcstubs changes that are not viable for our codebase.
Diffstat (limited to 'config')
-rw-r--r--config/external/ffi/moz.build2
1 files changed, 2 insertions, 0 deletions
diff --git a/config/external/ffi/moz.build b/config/external/ffi/moz.build
index 32c4506ed5..168f28c0bf 100644
--- a/config/external/ffi/moz.build
+++ b/config/external/ffi/moz.build
@@ -121,6 +121,8 @@ else:
DEFINES['SYMBOL_UNDERSCORE'] = True
else:
ffi_srcs = ('ffi.c', 'darwin.S', 'ffi64.c', 'darwin64.S')
+ elif CONFIG['FFI_TARGET'] == 'AARCH64_DARWIN':
+ ffi_srcs = ('sysv.S', 'ffi.c')
SOURCES += [
'/js/src/ctypes/libffi/src/%s/%s' % (CONFIG['FFI_TARGET_DIR'], s)