Bug 1664774 [wpt PR 25514] - Python 3: make the new introduced image.py file python...
[gecko.git] / js / ffi.configure
blob86b75e095e180931f982bc65517bf96750c04792
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/.
7 @depends(target)
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'):
11         return True
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',
21                                when=use_system_ffi)
23 building_ffi = depends(system_ffi)(lambda v: v is None)
25 set_config('MOZ_SYSTEM_FFI', depends_if(system_ffi)(lambda _: True))
27 # Target selection, based on ffi/configure.ac.
28 @depends(target, when=building_ffi)
29 def ffi_target(target):
30     if target.cpu not in ('x86', 'x86_64', 'arm', 'aarch64'):
31         die('Building libffi from the tree is not supported on this platform. '
32             'Use --with-system-ffi instead.')
34     if target.cpu == 'x86_64':
35         target_dir = 'x86'
36         target_name = {
37             'WINNT': 'X86_WIN64',
38         }.get(target.kernel, 'X86_64')
40     elif target.cpu == 'x86':
41         target_dir = 'x86'
42         target_name = {
43             'WINNT': 'X86_WIN32',
44             'Darwin': 'X86_DARWIN',
45             'FreeBSD': 'X86_FREEBSD',
46             'OpenBSD': 'X86_FREEBSD',
47         }.get(target.kernel, 'X86')
49     elif target.cpu == 'aarch64':
50         target_dir = 'aarch64'
51         target_name = {
52             'WINNT': 'ARM_WIN64',
53         }.get(target.kernel, 'AARCH64')
55     elif target.cpu == 'arm':
56         target_dir = 'arm'
57         target_name = 'ARM'
59     return namespace(
60         name=target_name,
61         dir=target_dir
62     )
64 set_config('FFI_TARGET', ffi_target.name)
65 set_config('FFI_TARGET_DIR', ffi_target.dir)