aboutsummaryrefslogtreecommitdiff
path: root/linux-user/riscv/meson.build
blob: beb989a7caaca71eb188aed6edb19f14b3855e99 (plain)
1
2
3
4
5
6
7
vdso_32_inc = gen_vdso.process('vdso-32.so',
                               extra_args: ['-r', '__vdso_rt_sigreturn'])
vdso_64_inc = gen_vdso.process('vdso-64.so',
                               extra_args: ['-r', '__vdso_rt_sigreturn'])

linux_user_ss.add(when: 'TARGET_RISCV32', if_true: vdso_32_inc)
linux_user_ss.add(when: 'TARGET_RISCV64', if_true: vdso_64_inc)