mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
meson: linux-user
The most interesting or most complicated part here is the syscall_nr.h generators. In order to keep the generation logic all in meson.build, I am adding to config_target the name of the .tbl file, and making the generated file syscall<SUFFIX>_nr.h for input file syscall<SUFFIX>.tbl. For architectures where the input file is not named syscall_nr.tbl, syscall_nr.h has to be a source file; it's just a forwarder for x86 (i386/x86_64), while for MIPS64 it chooses between N32 and N64 ABIs. Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
1a82878a08
commit
3a30446aed
41 changed files with 166 additions and 132 deletions
|
@ -1,5 +0,0 @@
|
|||
generated-files-y += linux-user/sparc/syscall_nr.h
|
||||
|
||||
syshdr := $(SRC_PATH)/linux-user/sparc/syscallhdr.sh
|
||||
%/syscall_nr.h: $(SRC_PATH)/linux-user/sparc/syscall.tbl $(syshdr)
|
||||
$(call quiet-command, sh $(syshdr) $< $@ $(TARGET_SYSTBL_ABI),"GEN","$@")
|
5
linux-user/sparc/meson.build
Normal file
5
linux-user/sparc/meson.build
Normal file
|
@ -0,0 +1,5 @@
|
|||
syscall_nr_generators += {
|
||||
'sparc': generator(sh,
|
||||
arguments: [ meson.current_source_dir() / 'syscallhdr.sh', '@INPUT@', '@OUTPUT@', '@EXTRA_ARGS@' ],
|
||||
output: '@BASENAME@_nr.h')
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue