Compare commits
10 Commits
1311338ccf
...
d1a44134b1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d1a44134b1 | ||
|
|
d595d7e9a5 | ||
|
|
47d090bf67 | ||
|
|
8325327418 | ||
|
|
3b16b84f9e | ||
|
|
badf983b52 | ||
|
|
02ce08cab3 | ||
|
|
b6ae236607 | ||
|
|
4e448d30f1 | ||
|
|
d12535e64e |
29
Initialize-nrhs-to-avoid-gcc-warning.patch
Normal file
29
Initialize-nrhs-to-avoid-gcc-warning.patch
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
From dac8e133866684c2e090f9922871dc3e3b501a30 Mon Sep 17 00:00:00 2001
|
||||||
|
From: lingsheng <lingsheng@huawei.com>
|
||||||
|
Date: Mon, 11 Jan 2021 14:27:49 +0800
|
||||||
|
Subject: [PATCH] Initialize 'nrhs' to avoid gcc warning
|
||||||
|
|
||||||
|
---
|
||||||
|
expr.c | 4 ++--
|
||||||
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/expr.c b/expr.c
|
||||||
|
index 4059a32..01851c8 100644
|
||||||
|
--- a/expr.c
|
||||||
|
+++ b/expr.c
|
||||||
|
@@ -189,10 +189,10 @@ int
|
||||||
|
expr_clone(struct expr_node *retp, const struct expr_node *node)
|
||||||
|
{
|
||||||
|
*retp = *node;
|
||||||
|
+ struct expr_node *nlhs;
|
||||||
|
+ struct expr_node *nrhs = NULL;
|
||||||
|
|
||||||
|
switch (node->kind) {
|
||||||
|
- struct expr_node *nlhs;
|
||||||
|
- struct expr_node *nrhs;
|
||||||
|
|
||||||
|
case EXPR_OP_ARGNO:
|
||||||
|
case EXPR_OP_SELF:
|
||||||
|
--
|
||||||
|
2.23.0
|
||||||
|
|
||||||
1438
ltrace-0.7.91-add-initial-riscv64-support.patch
Normal file
1438
ltrace-0.7.91-add-initial-riscv64-support.patch
Normal file
File diff suppressed because it is too large
Load Diff
1911
ltrace-0.7.91-add-support-for-loongarch.patch
Normal file
1911
ltrace-0.7.91-add-support-for-loongarch.patch
Normal file
File diff suppressed because it is too large
Load Diff
34
ltrace-0.7.91-add-support-for-ppc64le.patch
Normal file
34
ltrace-0.7.91-add-support-for-ppc64le.patch
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
From 0590717edcc0b209690d26942bd935c23b4cb7d3 Mon Sep 17 00:00:00 2001
|
||||||
|
From: "peng.zou" <peng.zou@shingroup.cn>
|
||||||
|
Date: Tue, 19 Dec 2023 14:54:11 +0800
|
||||||
|
Subject: [PATCH] ltrace-0.7.91-add-support-for-ppc64le
|
||||||
|
|
||||||
|
---
|
||||||
|
configure.ac | 4 ++--
|
||||||
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/configure.ac b/configure.ac
|
||||||
|
index 852f201..fb030f2 100644
|
||||||
|
--- a/configure.ac
|
||||||
|
+++ b/configure.ac
|
||||||
|
@@ -45,7 +45,7 @@ case "${host_cpu}" in
|
||||||
|
cris*) HOST_CPU="cris" ;;
|
||||||
|
loongarch*) HOST_CPU="loongarch" ;;
|
||||||
|
mips*) HOST_CPU="mips" ;;
|
||||||
|
- powerpc|powerpc64) HOST_CPU="ppc" ;;
|
||||||
|
+ powerpc|powerpc64*) HOST_CPU="ppc" ;;
|
||||||
|
riscv64) HOST_CPU="riscv64" ;;
|
||||||
|
sun4u|sparc64) HOST_CPU="sparc" ;;
|
||||||
|
s390x) HOST_CPU="s390" ;;
|
||||||
|
@@ -216,7 +216,7 @@ if test x"$enable_libunwind" = xyes; then
|
||||||
|
arm*|sa110) UNWIND_ARCH="arm" ;;
|
||||||
|
i?86) UNWIND_ARCH="x86" ;;
|
||||||
|
powerpc) UNWIND_ARCH="ppc32" ;;
|
||||||
|
- powerpc64) UNWIND_ARCH="ppc64" ;;
|
||||||
|
+ powerpc64*) UNWIND_ARCH="ppc64" ;;
|
||||||
|
mips*) UNWIND_ARCH="mips" ;;
|
||||||
|
loongarch*) UNWIND_ARCH="loongarch" ;;
|
||||||
|
riscv*) UNWIND_ARCH="riscv" ;;
|
||||||
|
--
|
||||||
|
2.33.0
|
||||||
|
|
||||||
20
ltrace.spec
20
ltrace.spec
@ -1,6 +1,6 @@
|
|||||||
name: ltrace
|
name: ltrace
|
||||||
Version: 0.7.91
|
Version: 0.7.91
|
||||||
Release: 30
|
Release: 34
|
||||||
Summary: Trace the Library and System Calls a Program Makes
|
Summary: Trace the Library and System Calls a Program Makes
|
||||||
|
|
||||||
License: GPLv2+
|
License: GPLv2+
|
||||||
@ -29,6 +29,12 @@ Patch9000: bugfix-0001-ltrace-0.7.91-aarch64_be-compile-support.patch
|
|||||||
Patch9001: bugfix-0001-ltrace-byteswap-instruction-in-arm-be8-mode.patch
|
Patch9001: bugfix-0001-ltrace-byteswap-instruction-in-arm-be8-mode.patch
|
||||||
Patch9002: bugfix-for-use-after-free-about-soname.patch
|
Patch9002: bugfix-for-use-after-free-about-soname.patch
|
||||||
Patch9003: fix-null-directive-argument.patch
|
Patch9003: fix-null-directive-argument.patch
|
||||||
|
Patch9004: Initialize-nrhs-to-avoid-gcc-warning.patch
|
||||||
|
|
||||||
|
# patch for arches
|
||||||
|
Patch8000: ltrace-0.7.91-add-support-for-loongarch.patch
|
||||||
|
Patch8001: ltrace-0.7.91-add-initial-riscv64-support.patch
|
||||||
|
Patch8002: ltrace-0.7.91-add-support-for-ppc64le.patch
|
||||||
|
|
||||||
BuildRequires: elfutils-devel dejagnu libselinux-devel autoconf automake libtool
|
BuildRequires: elfutils-devel dejagnu libselinux-devel autoconf automake libtool
|
||||||
|
|
||||||
@ -74,6 +80,18 @@ autoreconf -i
|
|||||||
%{_mandir}/man5/ltrace.conf.5*
|
%{_mandir}/man5/ltrace.conf.5*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Dec 19 2023 peng.zou <peng.zou@shingroup.cn> - 0.7.91-34
|
||||||
|
- Add support for ppc64le
|
||||||
|
|
||||||
|
* Fri Jul 07 2023 laokz <zhangkai@iscas.ac.cn> - 0.7.91-33
|
||||||
|
- Backport riscv64 patch
|
||||||
|
|
||||||
|
* Thu Dec 15 2022 Hui Li <lihui@loongson.cn> - 0.7.91-32
|
||||||
|
- Add support for loongarch
|
||||||
|
|
||||||
|
* Mon Jan 11 2021 lingsheng <lingsheng@huawei.com> - 0.7.91-31
|
||||||
|
- Initialize 'nrhs' to avoid gcc warning
|
||||||
|
|
||||||
* Sat May 16 2020 Senlin Xia <xiasenlin1@huawei.com> - 0.7.91-30
|
* Sat May 16 2020 Senlin Xia <xiasenlin1@huawei.com> - 0.7.91-30
|
||||||
- fix the error: "%s" directive argument is NULL [-Werror=format-overflow=]
|
- fix the error: "%s" directive argument is NULL [-Werror=format-overflow=]
|
||||||
|
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
version-ctrl: git
|
version_control: git
|
||||||
src_repo: https://gitlab.com/cespedes/ltrace.git/
|
src_repo: https://gitlab.com/cespedes/ltrace.git/
|
||||||
tag_prefix: NA
|
tag_prefix: ""
|
||||||
seperator: "."
|
seperator: "."
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user