Upstream: https://gitlab.com/qemu-project/qemu.git Upstream-Commit: d2e570cc0f97b936902a5b1b86b73c0f5998b475
11 lines
393 B
Meson
11 lines
393 B
Meson
syscall_nr_generators += {
|
|
'hppa': 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: [ '-r', '__kernel_sigtramp_rt' ])
|
|
|
|
linux_user_ss.add(when: 'TARGET_HPPA', if_true: vdso_inc)
|