1 Star 0 Fork 21

问书/systemtap1

forked from src-anolis-os/systemtap 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
0001-add-loongarch-support-for-systemtap.patch 957 Bytes
一键复制 编辑 原始数据 按行查看 历史
From af53b13b6d15af5223eb9401c4b97561f1296113 Mon Sep 17 00:00:00 2001
From: WenlongZhang <[email protected]>
Date: Thu, 30 Jun 2022 01:52:56 +0000
Subject: [PATCH] add loongarch support for systemtap
---
staplog.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/staplog.c b/staplog.c
index a0b468e..6335b39 100644
--- a/staplog.c
+++ b/staplog.c
@@ -24,7 +24,7 @@
X86, X86_64, etc. See crash/configure.c (!). */
#if !defined(X86) && !defined(X86_64) && !defined(ALPHA) && !defined(PPC) && \
!defined(IA64) && !defined(PPC64) && !defined(S390) && !defined(S390X) && \
- !defined(ARM) && !defined(ARM64)
+ !defined(ARM) && !defined(ARM64) && !defined(LOONGARCH64)
#if defined(__alpha__)
#define ALPHA
@@ -46,6 +46,8 @@
#define ARM64
#elif defined(__arm__)
#define ARM
+#elif defined(__loongarch64)
+#define LOONGARCH64
#else
#warn "unknown architecture for crash/staplog support"
#endif
--
2.27.0
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/Weisson/systemtap1.git
[email protected]:Weisson/systemtap1.git
Weisson
systemtap1
systemtap1
a8

搜索帮助