diff options
author | Gibson Fahnestock <gib@uk.ibm.com> | 2016-11-16 16:02:57 +0000 |
---|---|---|
committer | Myles Borins <myles.borins@gmail.com> | 2016-12-20 14:20:32 -0500 |
commit | 12993b298a67c17f85492d0945f928c9b93cf853 (patch) | |
tree | 1b7b65ee2c7fade28723dcfd3b5127acf88b4758 /configure | |
parent | f9fd53d82ddecef556916fafe3dc7bf0a64baef4 (diff) | |
download | node-new-12993b298a67c17f85492d0945f928c9b93cf853.tar.gz |
build: default to ppc64 on AIX
The ./configure python script searches `gcc -dM -E -` for the ARCH
flags. On AIX, gcc builds in 32 bit mode by default prior to gcc v6, so
you don't get the __PPC64__ flag unless you run `gcc -maix64 -dM -E -`.
We don't support ppc 32 bit for any OS, so always use ppc64 as the
host_arch.
PR-URL: https://github.com/nodejs/node/pull/9645
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -677,7 +677,7 @@ def host_arch_cc(): '__MIPSEL__' : 'mipsel', '__mips__' : 'mips', '__PPC64__' : 'ppc64', - '__PPC__' : 'ppc', + '__PPC__' : 'ppc64', '__x86_64__' : 'x64', '__s390__' : 's390', '__s390x__' : 's390x', |