forked from easybuilders/easybuild-easyconfigs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
34 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 29 additions & 0 deletions
29
easybuild/easyconfigs/x/x264/x264-20231019_add-riscv-support.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
Add Risc-V 64 bit to config.guess | ||
https://code.videolan.org/videolan/x264/-/merge_requests/121 | ||
|
||
From 941cae6d1d6d6344c9a1d27440eaf2872b18ca9a Mon Sep 17 00:00:00 2001 | ||
From: Roger Hardiman <[email protected]> | ||
Date: Fri, 18 Nov 2022 20:15:40 +0000 | ||
Subject: [PATCH] Add Risc-V 64 bit | ||
|
||
--- | ||
config.guess | 3 +++ | ||
1 file changed, 3 insertions(+) | ||
|
||
diff --git a/config.guess b/config.guess | ||
index d437be00..14c12963 100755 | ||
--- a/config.guess | ||
+++ b/config.guess | ||
@@ -985,6 +985,9 @@ EOF | ||
ppc:Linux:*:*) | ||
echo powerpc-unknown-linux-gnu | ||
exit ;; | ||
+ riscv64:Linux:*:*) | ||
+ echo ${UNAME_MACHINE}-unknown-linux-gnu | ||
+ exit ;; | ||
s390:Linux:*:* | s390x:Linux:*:*) | ||
echo ${UNAME_MACHINE}-ibm-linux | ||
exit ;; | ||
-- | ||
GitLab | ||
|