build: enable ssl support on arm64
authorShigeki Ohtsu <ohtsu@iij.ad.jp>
Fri, 10 Apr 2015 07:13:53 +0000 (16:13 +0900)
committerShigeki Ohtsu <ohtsu@iij.ad.jp>
Tue, 14 Apr 2015 15:39:10 +0000 (00:39 +0900)
Fixes: https://github.com/iojs/io.js/issues/589
PR-URL: https://github.com/iojs/io.js/pull/1389
Reviewed-By: Fedor Indutny <fedor@indutny.com>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
configure

index 25e5402..80b6a7d 100755 (executable)
--- a/configure
+++ b/configure
@@ -594,13 +594,6 @@ def configure_node(o):
 
   if target_arch == 'arm':
     configure_arm(o)
-  elif (target_arch == 'arm64' and
-        not options.shared_openssl and
-        not options.without_ssl):
-    # FIXME(bnoordhuis) It's not possible to build the bundled openssl due to
-    # deps/openssl/asm/arm-elf-gas/modes/ghash-armv4.S, which is 32 bits only.
-    warn('not building openssl, arm64 not yet supported')
-    options.without_ssl = True
   elif target_arch in ('mips', 'mipsel'):
     configure_mips(o)