mirror of
https://github.com/JakeHillion/scx.git
synced 2024-10-29 18:42:19 +00:00
ca21842908
The scx_nest scheduler seems to be behaving well. Let's merge it to the scx repo so that CachyOS can package and use it more easily. Signed-off-by: David Vernet <void@manifault.com>
11 lines
339 B
Meson
11 lines
339 B
Meson
c_scheds = ['scx_nest']
|
|
|
|
foreach sched: c_scheds
|
|
bpf_o = gen_bpf_o.process(sched + '.bpf.c', extra_args: bpf_includes)
|
|
bpf_skel = gen_bpf_skel.process(bpf_o)
|
|
executable(sched, [bpf_skel, sched + '.c'],
|
|
include_directories: [user_c_includes],
|
|
dependencies: libbpf_dep,
|
|
install: true)
|
|
endforeach
|