Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
feat: add aarch64-rhel build support
- Loading branch information
1 parent
7c7eb6d
commit 9387f4fdc4c1013fb32bb8442147988a529df7f0
Showing
3 changed files
with
39 additions
and
2 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
@@ -0,0 +1,23 @@ | ||
From: Peter Lemenkov <lemenkov@gmail.com> | ||
Date: Thu, 5 Mar 2020 16:36:42 +0300 | ||
Subject: [PATCH] Build with SpiderMonkey 60 on ARM 64 | ||
|
||
Signed-off-by: Peter Lemenkov <lemenkov@gmail.com> | ||
|
||
diff --git a/configure b/configure | ||
index 38e62e317..995b537f8 100755 | ||
--- a/configure | ||
+++ b/configure | ||
@@ -178,12 +178,6 @@ parse_opts() { | ||
|
||
parse_opts $@ | ||
|
||
-if [ "${ARCH}" = "aarch64" ] && [ "${SM_VSN}" != "1.8.5" ] | ||
-then | ||
- echo "ERROR: SpiderMonkey 60 is known broken on ARM 64 (aarch64). Use 1.8.5 instead." | ||
- exit 1 | ||
-fi | ||
- | ||
echo "==> configuring couchdb in rel/couchdb.config" | ||
cat > rel/couchdb.config << EOF | ||
% Licensed under the Apache License, Version 2.0 (the "License"); you may not |
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