1 # -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
2 # vim: set filetype=python:
3 # This Source Code Form is subject to the terms of the Mozilla Public
4 # License, v. 2.0. If a copy of the MPL was not distributed with this
5 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 def force_system_ffi(target):
9 # Pre-emptively move to system ffi for non-tier one platforms.
10 if target.cpu not in ('x86', 'x86_64', 'arm', 'aarch64'):
13 imply_option('--with-system-ffi', force_system_ffi, "target")
15 js_option('--with-system-ffi',
16 help='Use system libffi (located with pkgconfig)')
18 use_system_ffi = depends_if('--with-system-ffi')(lambda _: True)
20 system_ffi = pkg_check_modules('MOZ_FFI', 'libffi > 3.0.9',
23 building_ffi = depends(system_ffi)(lambda v: v is None)
25 set_config('MOZ_SYSTEM_FFI', depends_if(system_ffi)(lambda _: True))
26 add_old_configure_assignment('MOZ_SYSTEM_FFI', depends_if(system_ffi)(lambda _: True))
28 # Target selection, based on ffi/configure.ac.
29 @depends(target, when=building_ffi)
30 def ffi_target(target):
31 if target.cpu not in ('x86', 'x86_64', 'arm', 'aarch64'):
32 die('Building libffi from the tree is not supported on this platform. '
33 'Use --with-system-ffi instead.')
35 if target.os == 'WINNT':
37 if target.cpu == 'x86_64':
38 target_name = 'X86_WIN64'
40 target_name = 'X86_WIN32'
41 elif target.os == 'OSX':
43 target_name = 'X86_DARWIN'
44 elif target.cpu == 'arm':
47 elif target.cpu == 'aarch64':
48 target_dir = 'aarch64'
49 target_name = 'AARCH64'
52 target_name = target.cpu.upper()
59 set_config('FFI_TARGET', ffi_target.name)
60 set_config('FFI_TARGET_DIR', ffi_target.dir)