20 Star 0 Fork 42

openEuler-RISC-V/mesa

forked from src-openEuler/mesa 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
backport-fix-build-err-on-arm.patch 860 Bytes
一键复制 编辑 原始数据 按行查看 历史
shirely 提交于 2021-12-17 10:08 . upgrade to 21.3.1
From eba08aad979fbdeb2face8769dcdda80105e6b70 Mon Sep 17 00:00:00 2001
From: satmandu <satmandu@satmandu.com>
https://gitlab.freedesktop.org/mesa/mesa/-/issues/5067
Subject: [PATCH] backport-fix-build-err-on-arm
---
src/gallium/drivers/freedreno/freedreno_util.h | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/src/gallium/drivers/freedreno/freedreno_util.h b/src/gallium/drivers/freedreno/freedreno_util.h
index 5e00657..29d5df3 100644
--- a/src/gallium/drivers/freedreno/freedreno_util.h
+++ b/src/gallium/drivers/freedreno/freedreno_util.h
@@ -44,6 +44,15 @@
#include "adreno_pm4.xml.h"
#include "disasm.h"
+#include <unistd.h>
+#include <sys/syscall.h>
+
+#ifndef SYS_gettid
+#error "SYS_gettid unavailable on this system"
+#endif
+
+#define gettid() ((pid_t)syscall(SYS_gettid))
+
#ifdef __cplusplus
extern "C" {
#endif
--
2.27.0
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/openeuler-risc-v/mesa.git
git@gitee.com:openeuler-risc-v/mesa.git
openeuler-risc-v
mesa
mesa
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385