-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmeson.build
61 lines (56 loc) · 1.73 KB
/
meson.build
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
project('hermit-c', 'c', default_options: ['warning_level=3', 'b_pie=true'])
thread_dep = dependency('threads')
if host_machine.system() == 'hermit'
find_program('rustup', required: true)
cargo = find_program('cargo', required: true)
arch = host_machine.cpu()
if get_option('buildtype') == 'debug'
profile = 'dev'
else
profile = 'release'
endif
features = 'acpi,dhcpv4,newlib,smp,tcp'
if arch != 'riscv64'
features += ',pci'
endif
hermit = custom_target(
'hermit',
build_always_stale: true,
console: true,
output: 'libhermit.a',
command: [
cargo,
'run',
'--manifest-path=@SOURCE_ROOT@/kernel/Cargo.toml',
'--target-dir=@PRIVATE_DIR@/xtask',
'--package=xtask',
'--',
'build',
'--target-dir=@PRIVATE_DIR@/hermit-kernel',
'--artifact-dir=@OUTDIR@',
'--arch',
arch,
'--profile',
profile,
'--no-default-features',
'--features',
features,
],
)
else
hermit = []
endif
executable('fs', 'src/fs.c', link_whole: hermit)
executable('hello_world', 'src/hello_world.c', link_whole: hermit)
executable('http_server', 'src/http_server.c', link_whole: hermit)
executable('http_server_poll', 'src/http_server_poll.c', link_whole: hermit)
executable('math', 'src/math.c', link_whole: hermit)
executable('memory', 'src/memory.c', link_whole: hermit)
executable(
'pthreads',
'src/pthreads.c',
dependencies: thread_dep,
link_whole: hermit,
)
executable('thread_local', 'src/thread_local.c', link_whole: hermit)
executable('time', 'src/time.c', link_whole: hermit)