b63c6b97f8
Acked-by: Thomas Huth <thuth@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
12 lines
489 B
Meson
12 lines
489 B
Meson
syscall_nr_generators += {
|
|
's390x': generator(sh,
|
|
arguments: [ meson.current_source_dir() / 'syscallhdr.sh', '@INPUT@', '@OUTPUT@', '@EXTRA_ARGS@' ],
|
|
output: '@BASENAME@_nr.h')
|
|
}
|
|
|
|
vdso_inc = gen_vdso.process('vdso.so', extra_args: [
|
|
'-s', '__kernel_sigreturn',
|
|
'-r', '__kernel_rt_sigreturn'
|
|
])
|
|
linux_user_ss.add(when: 'TARGET_S390X', if_true: vdso_inc)
|