加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Fix-build-error-for-ppc64le.patch 980 Bytes
一键复制 编辑 原始数据 按行查看 历史
fly_fzc 提交于 2024-11-27 14:24 . fix build error for ppc64le
From 4d2ed81fcc1f21aa651fb5cc4555ea21cfd3d232 Mon Sep 17 00:00:00 2001
From: peng_zou <peng.zou@shingroup.cn>
Date: Tue, 25 Jun 2024 10:33:28 +0800
Subject: [PATCH] Fix build error for ppc64le
---
Configurations/10-main.conf | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/Configurations/10-main.conf b/Configurations/10-main.conf
index 915e7dd..27433ce 100644
--- a/Configurations/10-main.conf
+++ b/Configurations/10-main.conf
@@ -734,6 +734,14 @@ my %targets = (
asm_arch => 'ppc64',
perlasm_scheme => "linux64le",
},
+ "linux64-ppc64le" => {
+ inherit_from => [ "linux-generic64" ],
+ cflags => add("-m64"),
+ cxxflags => add("-m64"),
+ lib_cppflags => add("-DL_ENDIAN"),
+ asm_arch => 'ppc64',
+ perlasm_scheme => "linux64le",
+ },
"linux-armv4" => {
################################################################
--
2.43.0
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化