diff options
author | Andrei Sedoi <bsnote@gmail.com> | 2013-06-12 18:47:10 +0300 |
---|---|---|
committer | Ben Noordhuis <info@bnoordhuis.nl> | 2013-06-13 13:27:58 +0200 |
commit | 884b25356f20cd95412d86a413283c98d0ac5ed2 (patch) | |
tree | f37bc105665a6f72983ac659a60596b4352bf155 /configure | |
parent | e8500274e04bab2eb630b4000cbd35be8d23d3fd (diff) | |
download | node-new-884b25356f20cd95412d86a413283c98d0ac5ed2.tar.gz |
openssl: add missing configuration pieces for MIPS
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -381,6 +381,7 @@ def host_arch_cc(): '__x86_64__' : 'x64', '__i386__' : 'ia32', '__arm__' : 'arm', + '__mips__' : 'mips', } rtn = 'ia32' # default @@ -402,6 +403,7 @@ def host_arch_win(): 'AMD64' : 'x64', 'x86' : 'ia32', 'arm' : 'arm', + 'mips' : 'mips', } return matchup.get(arch, 'ia32') |