diff options
author | Laurent Vivier | 2020-03-10 11:33:53 +0100 |
---|---|---|
committer | Laurent Vivier | 2020-03-20 16:02:00 +0100 |
commit | 318f371dcf797ab29dccabd3d9956f835c6fa69e (patch) | |
tree | dcd5767335469840330b1775a0078d1b6fdc0d7d /configure | |
parent | linux-user, s390x: remove syscall definitions for !TARGET_S390X (diff) | |
download | qemu-318f371dcf797ab29dccabd3d9956f835c6fa69e.tar.gz qemu-318f371dcf797ab29dccabd3d9956f835c6fa69e.tar.xz qemu-318f371dcf797ab29dccabd3d9956f835c6fa69e.zip |
linux-user, s390x: add syscall table generation support
Copy syscall.tbl from linux/arch/s390x/kernel/syscalls v5.5
Copy syscallhdr.sh from m68k.
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Reviewed-by: Taylor Simpson <tsimpson@quicinc.com>
Message-Id: <20200310103403.3284090-12-laurent@vivier.eu>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1889,7 +1889,7 @@ rm -f */config-devices.mak.d # Remove syscall_nr.h to be sure they will be regenerated in the build # directory, not in the source directory -for arch in alpha hppa m68k xtensa sh4 microblaze arm ppc ; do +for arch in alpha hppa m68k xtensa sh4 microblaze arm ppc s390x ; do # remove the file if it has been generated in the source directory rm -f "${source_path}/linux-user/${arch}/syscall_nr.h" # remove the dependency files @@ -7912,6 +7912,7 @@ case "$target_name" in echo "TARGET_ABI32=y" >> $config_target_mak ;; s390x) + TARGET_SYSTBL_ABI=common,64 mttcg=yes gdb_xml_files="s390x-core64.xml s390-acr.xml s390-fpr.xml s390-vx.xml s390-cr.xml s390-virt.xml s390-gs.xml" ;; |