diff --git a/debian/changelog b/debian/changelog index dc20ed17..ce2836d9 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +qtbase-opensource-src (5.15.10+dfsg-3ok2.11) nile; urgency=medium + + * BUG号:无 + * 需求号:无 + * 其他更改:修复v11龙芯QProcess接口异常问题(对5.15.10+dfsg-3ok2.10进行修改) + + -- renjianquan Fri, 11 Oct 2024 17:14:33 +0800 + qtbase-opensource-src (5.15.10+dfsg-3ok2.10) nile; urgency=medium * BUG号:无 diff --git a/src/3rdparty/forkfd/forkfd_linux.c b/src/3rdparty/forkfd/forkfd_linux.c index a31ff590..7b5bd21f 100644 --- a/src/3rdparty/forkfd/forkfd_linux.c +++ b/src/3rdparty/forkfd/forkfd_linux.c @@ -83,7 +83,7 @@ static int sys_clone(unsigned long cloneflags, int *ptid) #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(loongarch64) + 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);