-
-
Notifications
You must be signed in to change notification settings - Fork 615
/
Copy pathbuild-qemu
executable file
·68 lines (61 loc) · 2.01 KB
/
build-qemu
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
#!/usr/bin/env python3
import os
import common
from shell_helpers import LF
class Main(common.BuildCliFunction):
def __init__(self):
super().__init__()
self._add_argument('--configure')
self.add_argument(
'--extra-config-args',
default='',
help='''\
Extra arguments to pass to configure
'''
)
self._add_argument('extra_make_args')
def build(self):
build_dir = self.get_build_dir()
os.makedirs(build_dir, exist_ok=True)
if self.env['verbose']:
verbose = ['V=1']
else:
verbose = []
if self.env['mode'] == 'userland':
target_list = '{}-linux-user'.format(self.env['arch'])
else:
target_list = '{}-softmmu'.format(self.env['arch'])
if self.env['qemu_build_type'] == 'debug':
# https://stackoverflow.com/questions/4689136/debug-qemu-with-gdb
build_type_cmd = ['--enable-debug', LF]
else:
build_type_cmd = []
if self.env['configure']:
self.sh.run_cmd(
[
os.path.join(self.env['qemu_source_dir'], 'configure'), LF,
'--enable-trace-backends=simple', LF,
'--target-list={}'.format(target_list), LF,
'--enable-sdl', LF,
] +
build_type_cmd +
self.sh.shlex_split(self.env['extra_config_args']),
extra_paths=[self.env['ccache_dir']],
cwd=build_dir
)
self.sh.run_cmd(
(
[
'make', LF,
'-j', str(self.env['nproc']), LF,
] +
verbose +
self.sh.add_newlines(self.env['extra_make_args'])
),
cwd=build_dir,
extra_paths=[self.env['ccache_dir']],
)
def get_build_dir(self):
return self.env['qemu_build_dir']
if __name__ == '__main__':
Main().cli()