forked from livecode/livecode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fetch.py
150 lines (123 loc) · 4.13 KB
/
fetch.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
#!/usr/bin/env python
# Copyright (C) 2017 LiveCode Ltd.
#
# This file is part of LiveCode.
#
# LiveCode is free software; you can redistribute it and/or modify it under
# the terms of the GNU General Public License v3 as published by the Free
# Software Foundation.
#
# LiveCode is distributed in the hope that it will be useful, but WITHOUT ANY
# WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# for more details.
#
# You should have received a copy of the GNU General Public License
# along with LiveCode. If not see <http://www.gnu.org/licenses/>.
import sys
import platform
import os
import subprocess
import re
def usage(exit_status):
print(
"""Fetch prebuilts needed to build LiveCode.
Usage:
fetch.py [--target TARGET]
Options:
-p, --target TARGET
Choose which target triple to build for
-h, --help Print this message
""")
for p in KNOWN_PLATFORMS:
print(" " + p)
sys.exit(exit_status)
def error(message):
print('ERROR: ' + message)
sys.exit(1)
def guess_target():
system = platform.system()
arch = platform.machine()
if system == 'Darwin':
return 'mac-universal'
if system == 'Linux':
if re.match('^(x|i.?)86$', arch) is not None:
return 'linux-x86'
else:
return 'linux-' + arch
if system == 'Windows':
if arch == 'AMD64':
return 'win32-x86_64'
else:
return 'win32-x86'
################################################################
# Parse command-line options
################################################################
def process_env_options(opts):
vars = ('TARGET',)
for v in vars:
opts[v] = os.getenv(v)
def process_arg_options(opts, args):
offset = 0
while offset < len(args):
key = args[offset]
if offset + 1 < len(args):
value = args[offset + 1]
else:
value = None
if key in ('-h', '--help'):
usage(0)
if key in ('-p', '--target'):
opts['TARGET'] = value
offset += 2
continue
# Unrecognised option
error("Unrecognised option '{}'".format(key))
################################################################
# Validate
################################################################
def validate_target(opts):
target = opts['TARGET']
if target is None:
target = guess_target()
if target is None:
error("Cannot guess target; specify '--target <name>-'")
opts['TARGET'] = target
################################################################
# Action
################################################################
def exec_fetch_libraries(build_platform, build_arch):
if platform.system() == 'Windows':
args = [".\util\invoke-unix.bat", "prebuilt/fetch-libraries.sh", build_platform, build_arch]
else:
args = ["./prebuilt/fetch-libraries.sh", build_platform, build_arch]
print(' '.join(args))
status = subprocess.call(args)
if status != 0:
sys.exit(status)
def get_fetch_arch(platform, arch):
if platform in ['mac', 'ios']:
return "Universal"
elif platform == 'linux' and arch == 'x86':
return "i386"
else:
return arch
def fetch(args):
opts = {}
process_env_options(opts)
process_arg_options(opts, args)
validate_target(opts)
host_components = guess_target().split('-')
target_components = opts['TARGET'].split('-')
# Get the host platform to pass to fetch-libraries
host_platform = host_components[0]
host_arch = get_fetch_arch(host_platform, host_components[1])
# Get the target platform to pass to fetch-libraries
target_platform = target_components[1]
target_arch = get_fetch_arch(target_platform, target_components[0])
print('Fetching host platform prebuilts (' + host_platform + ')')
exec_fetch_libraries(host_platform, host_arch)
print('Fetching target platform prebuilts (' + target_platform + ')')
exec_fetch_libraries(target_platform, target_arch)
if __name__ == '__main__':
fetch(sys.argv[1:])