summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorEd Schouten <ed@nuxi.nl>2017-10-30 06:58:13 -0400
committerRefael Ackermann <refack@gmail.com>2017-11-01 17:55:20 -0400
commit78dbcbe559324cdd73c2a158ad6ce77a7a74717f (patch)
tree0ae16fc1461f81460ad102dfc8351a74a18ceb80 /configure
parentd1a9c029a09165ea7b9ae799d701fab8a204fe05 (diff)
downloadandroid-node-v8-78dbcbe559324cdd73c2a158ad6ce77a7a74717f.tar.gz
android-node-v8-78dbcbe559324cdd73c2a158ad6ce77a7a74717f.tar.bz2
android-node-v8-78dbcbe559324cdd73c2a158ad6ce77a7a74717f.zip
build,src: Add CloudABI as a POSIX-like runtime environment.
CloudABI is a compact POSIX-like runtime that makes use of capability-based security. More details: https://github.com/NuxiNL/cloudlibc * src: Disable use of pwd.h, grp.h and get*uid() on CloudABI. As CloudABI is intended to run applications in cluster contexts (e.g., on Kubernetes), they are oblivious of UNIX credentials. Extend the existing preprocessor checks to disable any use of these interfaces, just like on Windows, Android, etc. * src: Explicitly include <netdb.h>. cares_wrap.cc calls into functions like getnameinfo() and getaddrinfo(). These functions tend to be available implicitly through <uv.h>, but we'd better still include this header explicitly. On CloudABI, we make use of a custom implementation of libuv that does not implicitly include header files like <netdb.h>. PR-URL: https://github.com/nodejs/node/pull/16612 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Refael Ackermann <refack@gmail.com>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 9e04b03d4f..95f103fbcb 100755
--- a/configure
+++ b/configure
@@ -57,7 +57,7 @@ from gyp_node import run_gyp
parser = optparse.OptionParser()
valid_os = ('win', 'mac', 'solaris', 'freebsd', 'openbsd', 'linux',
- 'android', 'aix')
+ 'android', 'aix', 'cloudabi')
valid_arch = ('arm', 'arm64', 'ia32', 'mips', 'mipsel', 'mips64el', 'ppc',
'ppc64', 'x32','x64', 'x86', 's390', 's390x')
valid_arm_float_abi = ('soft', 'softfp', 'hard')