!27 修复v11龙芯QProcess接口异常问题

Merge pull request !27 from renjianquan/openkylin/nile
This commit is contained in:
renjianquan 2024-10-08 03:44:59 +00:00 committed by openkylin-cibot
parent 8f943bda4f
commit 053be96599
3 changed files with 33 additions and 0 deletions

8
debian/changelog vendored
View File

@ -1,3 +1,11 @@
qtbase-opensource-src (5.15.10+dfsg-3ok2.10) nile; urgency=medium
* BUG号
* 需求号:无
* 其他更改修复v11龙芯QProcess接口异常问题——Add macro definition loongarch64
-- renjianquan <renjianquan@kylinos.cn> Tue, 08 Oct 2024 11:39:39 +0800
qtbase-opensource-src (5.15.10+dfsg-3ok2.9) nile; urgency=medium qtbase-opensource-src (5.15.10+dfsg-3ok2.9) nile; urgency=medium
* BUG号 * BUG号

View File

@ -0,0 +1,24 @@
From: renjianquan <renjianquan@kylinos.cn>
Date: Tue, 8 Oct 2024 03:44:59 +0000
Subject: =?utf-8?b?ITI3IOS/ruWkjXYxMem+meiKr1FQcm9jZXNz5o6l5Y+j5byC5bi46Zeu?=
=?utf-8?b?6aKYIE1lcmdlIHB1bGwgcmVxdWVzdCAhMjcgZnJvbSByZW5qaWFucXVhbi9vcGVu?=
=?utf-8?b?a3lsaW4vbmlsZQ==?=
---
src/3rdparty/forkfd/forkfd_linux.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/3rdparty/forkfd/forkfd_linux.c b/src/3rdparty/forkfd/forkfd_linux.c
index ffe0e9a..a31ff59 100644
--- a/src/3rdparty/forkfd/forkfd_linux.c
+++ b/src/3rdparty/forkfd/forkfd_linux.c
@@ -82,7 +82,8 @@ static int sys_clone(unsigned long cloneflags, int *ptid)
return syscall(__NR_clone, cloneflags, child_stack, stack_size, ptid, newtls, ctid);
#elif defined(__arc__) || defined(__arm__) || defined(__aarch64__) || defined(__mips__) || \
defined(__nds32__) || defined(__hppa__) || defined(__powerpc__) || defined(__i386__) || \
- defined(__x86_64__) || defined(__xtensa__) || defined(__alpha__) || defined(__riscv)
+ defined(__x86_64__) || defined(__xtensa__) || defined(__alpha__) || defined(__riscv) || \
+ defined(loongarch64)
/* ctid and newtls are inverted on CONFIG_CLONE_BACKWARDS architectures,
* but since both values are 0, there's no harm. */
return syscall(__NR_clone, cloneflags, child_stack, ptid, ctid, newtls);

View File

@ -47,3 +47,4 @@ revert_startBlocking_removal.diff
0047-Fix-build-with-libxkbcommon-1.6.0.patch 0047-Fix-build-with-libxkbcommon-1.6.0.patch
0048-25.patch 0048-25.patch
0049-26-forward-the-property-to-the-window-handle-if-it-i.patch 0049-26-forward-the-property-to-the-window-handle-if-it-i.patch
0050-27-v11-QProcess.patch