git.haskell.org
/
ghc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cb18447
)
configure.ac: add aarch64 to list of registerised
author
Sergei Trofimovich
<slyfox@gentoo.org>
Sun, 2 Apr 2017 19:56:40 +0000
(20:56 +0100)
committer
Sergei Trofimovich
<slyfox@gentoo.org>
Sun, 2 Apr 2017 19:59:28 +0000
(20:59 +0100)
Similar to 'arm' 'aarch64' has working llvm codegen,
no need to fallback to unregisterised buld by default.
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
configure.ac
patch
|
blob
|
history
diff --git
a/configure.ac
b/configure.ac
index
65430bf
..
3086e03
100644
(file)
--- a/
configure.ac
+++ b/
configure.ac
@@
-242,7
+242,7
@@
AC_SUBST(SOLARIS_BROKEN_SHLD)
dnl ** Do an unregisterised build?
dnl --------------------------------------------------------------
case "$TargetArch" in
- i386|x86_64|powerpc|powerpc64|powerpc64le|arm)
+ i386|x86_64|powerpc|powerpc64|powerpc64le|arm
|aarch64
)
UnregisterisedDefault=NO
;;
*)