mirror of
https://github.com/ZDoom/zdoom-macos-deps.git
synced 2024-11-25 05:11:49 +00:00
build script: support cross-compilation of glib
This commit is contained in:
parent
958ba8e1c8
commit
1f9e17fc4f
1 changed files with 23 additions and 1 deletions
24
build.py
24
build.py
|
@ -830,11 +830,33 @@ class GlibTarget(Target):
|
||||||
environment = self.environment
|
environment = self.environment
|
||||||
environment['LDFLAGS'] += ' -framework CoreFoundation'
|
environment['LDFLAGS'] += ' -framework CoreFoundation'
|
||||||
|
|
||||||
|
cpu = builder.architecture()
|
||||||
|
cpu_family = 'arm' if 'arm64' == cpu else cpu
|
||||||
|
|
||||||
|
cross_file = builder.build_path + builder.architecture() + '.txt'
|
||||||
|
with open(cross_file, 'w') as f:
|
||||||
|
f.write(f'''
|
||||||
|
[binaries]
|
||||||
|
c = '{builder.c_compiler()}'
|
||||||
|
cpp = '{builder.cxx_compiler()}'
|
||||||
|
objc = '{builder.c_compiler()}'
|
||||||
|
objcpp = '{builder.cxx_compiler()}'
|
||||||
|
pkgconfig = '{builder.prefix_path}/bin/pkg-config'
|
||||||
|
strip = '/usr/bin/strip'
|
||||||
|
|
||||||
|
[host_machine]
|
||||||
|
system = 'darwin'
|
||||||
|
cpu_family = '{cpu_family}'
|
||||||
|
cpu = '{cpu}'
|
||||||
|
endian = 'little'
|
||||||
|
''')
|
||||||
|
|
||||||
args = (
|
args = (
|
||||||
builder.bin_path + 'meson',
|
builder.bin_path + 'meson',
|
||||||
'--prefix=' + builder.deps_path + self.name,
|
'--prefix=' + self.prefix,
|
||||||
'--buildtype=release',
|
'--buildtype=release',
|
||||||
'--default-library=static',
|
'--default-library=static',
|
||||||
|
'--cross-file=' + cross_file,
|
||||||
builder.source_path
|
builder.source_path
|
||||||
)
|
)
|
||||||
subprocess.check_call(args, cwd=builder.build_path, env=environment)
|
subprocess.check_call(args, cwd=builder.build_path, env=environment)
|
||||||
|
|
Loading…
Reference in a new issue