diff options
author | Kostis Sagonas <[email protected]> | 2017-03-29 23:54:45 +0200 |
---|---|---|
committer | Kostis Sagonas <[email protected]> | 2017-03-29 23:54:45 +0200 |
commit | 024e438101c010f17e3a374117c3b376d48483f3 (patch) | |
tree | 95225b272f5171836ba12ed64f5a852ca300be58 /erts | |
parent | 53b483cb14c4b3b666eab63f9f09d7ac827f9a7c (diff) | |
download | otp-024e438101c010f17e3a374117c3b376d48483f3.tar.gz otp-024e438101c010f17e3a374117c3b376d48483f3.tar.bz2 otp-024e438101c010f17e3a374117c3b376d48483f3.zip |
Partially revert commit 37d63e9b8a0a96125ada858205286a58a5bed1ae
The above commit erroneously declared 'ppc64le' as a 'ppc64' for
HiPE enabling. These two architectures are different and one can
NOT expect that native code generated for one architecture runs
on the other one. Rather than reverting this commit, make sure
that the architecture is declared correctly instead of pretending
it's a PPC64.
Diffstat (limited to 'erts')
-rw-r--r-- | erts/configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/configure.in b/erts/configure.in index 7c6f4b163c..d7d56d45b6 100644 --- a/erts/configure.in +++ b/erts/configure.in @@ -622,7 +622,7 @@ case $chk_arch_ in powerpc) ARCH=ppc;; ppc) ARCH=ppc;; ppc64) ARCH=ppc64;; - ppc64le) ARCH=ppc64;; + ppc64le) ARCH=ppc64le;; "Power Macintosh") ARCH=ppc;; armv5b) ARCH=arm;; armv5teb) ARCH=arm;; |