mirror of
git://code.qt.io/qt/qt5.git
synced 2026-04-25 22:27:49 +08:00
Merge remote-tracking branch 'origin/5.12' into 5.13
Conflicts:
coin/platform_configs/default.yaml
coin/provisioning/common/linux/disable-ntp_linux.sh
coin/provisioning/qtci-linux-SLES-12-x86_64/55-emsdk.sh
coin/provisioning/qtci-linux-SLES-15-x86_64/55-emsdk.sh
emsdk.sh was moved from linux to unix, see
38e416be66
Change-Id: I5b06dde2860a4e4869960ae2a5be1d6a1396e957
This commit is contained in:
@@ -121,6 +121,43 @@ index 11a311f9db..94d8abc745 100644
|
||||
2.17.1
|
||||
EOT
|
||||
|
||||
patch -p1 <<EOT
|
||||
From fb4f0fa319e757c083f0b3674f575a09c323f5aa Mon Sep 17 00:00:00 2001
|
||||
From: Assam Boudjelthia <assam.boudjelthia@qt.io>
|
||||
Date: Tue, 20 Aug 2019 09:46:46 +0300
|
||||
Subject: [PATCH] Suppress unsupported syscall and ioctl debug messages
|
||||
|
||||
Those messages were spamming the CI tests output, thus they can
|
||||
only be shown by defining environment variable QEMU_SYSCALL_DEBUG=true
|
||||
|
||||
diff --git a/linux-user/syscall.c b/linux-user/syscall.c
|
||||
index 94d8abc745..e72cfb0cb5 100644
|
||||
--- a/linux-user/syscall.c
|
||||
+++ b/linux-user/syscall.c
|
||||
@@ -5479,7 +5479,8 @@ static abi_long do_ioctl(int fd, int cmd, abi_long arg)
|
||||
ie = ioctl_entries;
|
||||
for(;;) {
|
||||
if (ie->target_cmd == 0) {
|
||||
- gemu_log("Unsupported ioctl: cmd=0x%04lx\n", (long)cmd);
|
||||
+ if (getenv("QEMU_SYSCALL_DEBUG"))
|
||||
+ gemu_log("Unsupported ioctl: cmd=0x%04lx\n", (long)cmd);
|
||||
return -TARGET_ENOSYS;
|
||||
}
|
||||
if (ie->target_cmd == cmd)
|
||||
@@ -12172,7 +12173,8 @@ abi_long do_syscall(void *cpu_env, int num, abi_long arg1,
|
||||
|
||||
default:
|
||||
unimplemented:
|
||||
- gemu_log("qemu: Unsupported syscall: %d\n", num);
|
||||
+ if (getenv("QEMU_SYSCALL_DEBUG"))
|
||||
+ gemu_log("qemu: Unsupported syscall: %d\n", num);
|
||||
#if defined(TARGET_NR_setxattr) || defined(TARGET_NR_get_thread_area) || defined(TARGET_NR_getdomainname) || defined(TARGET_NR_set_robust_list)
|
||||
unimplemented_nowarn:
|
||||
#endif
|
||||
--
|
||||
2.17.1
|
||||
EOT
|
||||
|
||||
./configure --target-list=arm-linux-user,aarch64-linux-user --static --disable-werror
|
||||
make
|
||||
sudo make install
|
||||
|
||||
Reference in New Issue
Block a user