aboutsummaryrefslogtreecommitdiff
path: root/linux-user/i386/meson.build
blob: d42fc6cbc90cab42476c3c68e16f1b4d20defe63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
syscall_nr_generators += {
  'i386': 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_I386', if_true: vdso_inc)