git: 391630db44ad - main - benchmarks/uica: add support for powerpc*
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 16 Oct 2022 23:30:54 UTC
The branch main has been updated by pkubaj:
URL: https://cgit.FreeBSD.org/ports/commit/?id=391630db44ad016490f0516d1260e5e45a71b66b
commit 391630db44ad016490f0516d1260e5e45a71b66b
Author: Piotr Kubaj <pkubaj@FreeBSD.org>
AuthorDate: 2022-10-16 23:30:23 +0000
Commit: Piotr Kubaj <pkubaj@FreeBSD.org>
CommitDate: 2022-10-16 23:30:54 +0000
benchmarks/uica: add support for powerpc*
---
benchmarks/uica/files/patch-mbuild_mbuild_env.py | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/benchmarks/uica/files/patch-mbuild_mbuild_env.py b/benchmarks/uica/files/patch-mbuild_mbuild_env.py
index 2e48ab4c77ed..7d574f71d2d3 100644
--- a/benchmarks/uica/files/patch-mbuild_mbuild_env.py
+++ b/benchmarks/uica/files/patch-mbuild_mbuild_env.py
@@ -1,6 +1,6 @@
--- mbuild/mbuild/env.py.orig 2021-04-16 20:40:24 UTC
+++ mbuild/mbuild/env.py
-@@ -1237,6 +1237,10 @@ class env_t(object):
+@@ -1237,6 +1237,12 @@ class env_t(object):
return 'ia32'
elif name in ['aarch64', 'arm64']:
return 'aarch64'
@@ -8,6 +8,8 @@
+ return 'arm'
+ elif name[0:5] == 'riscv':
+ return 'riscv'
++ elif name[0:7] == 'powerpc':
++ return 'powerpc'
else:
die("Unknown cpu " + name)