This repository has been archived by the owner on Dec 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 120
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
Trung Lê
committed
Apr 28, 2020
1 parent
fcf04ce
commit f9968de
Showing
4 changed files
with
107 additions
and
7 deletions.
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
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
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
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,24 @@ | ||
From 88070442df48a857460a68d065957d0f7efc5468 Mon Sep 17 00:00:00 2001 | ||
From: Trung LE <[email protected]> | ||
Date: Sun, 8 Mar 2020 07:46:10 +0000 | ||
Subject: [PATCH] Support ninja ppc64le | ||
|
||
--- | ||
ninja | 2 ++ | ||
1 file changed, 2 insertions(+) | ||
|
||
diff --git a/ninja b/ninja | ||
index 1a650b54..eb146a4b 100755 | ||
--- a/ninja | ||
+++ b/ninja | ||
@@ -28,6 +28,8 @@ case "$OS" in | ||
# bittage of the userspace install (e.g. when running 32-bit userspace | ||
# on x86_64 kernel) | ||
exec "${THIS_DIR}/ninja-linux${LONG_BIT}" "$@";; | ||
+ ppc64le) | ||
+ exec "${THIS_DIR}/ninja-linux-ppc64le" "$@";; | ||
*) | ||
echo Unknown architecture \($MACHINE\) -- unable to run ninja. | ||
print_help | ||
-- | ||
2.17.1 |