X-Git-Url: https://git.distorted.org.uk/~mdw/termux-packages/blobdiff_plain/f316e99dac50e2e763ea3d97d4bd95daa0a1e86c..73d77d8ac7562cd897c84c6cbcadc6346cd6dc27:/packages/nodejs/build.sh diff --git a/packages/nodejs/build.sh b/packages/nodejs/build.sh index 8f17bbf4..444792f1 100644 --- a/packages/nodejs/build.sh +++ b/packages/nodejs/build.sh @@ -1,8 +1,8 @@ TERMUX_PKG_HOMEPAGE=https://nodejs.org/ TERMUX_PKG_DESCRIPTION="Platform built on Chrome's JavaScript runtime for easily building fast, scalable network applications" -TERMUX_PKG_VERSION=6.11.4 -TERMUX_PKG_SHA256=94557aa1b9adaa71a424eb7efe8877d7e65bda6e496350c4bac5f64ec715bb1c -TERMUX_PKG_SRCURL=https://nodejs.org/dist/v${TERMUX_PKG_VERSION}/node-v${TERMUX_PKG_VERSION}.tar.gz +TERMUX_PKG_VERSION=8.9.3 +TERMUX_PKG_SHA256=748ddb3baa6b85e6a56e38aacd066586e7581952f84a92bc8152248a9be6b2da +TERMUX_PKG_SRCURL=https://nodejs.org/dist/v${TERMUX_PKG_VERSION}/node-v${TERMUX_PKG_VERSION}.tar.xz # Note that we do not use a shared libuv to avoid an issue with the Android # linker, which does not use symbols of linked shared libraries when resolving # symbols on dlopen(). See https://github.com/termux/termux-packages/issues/462. @@ -24,6 +24,8 @@ termux_step_configure () { termux_error_exit "Unsupported arch '$TERMUX_ARCH'" fi + export GYP_DEFINES="host_os=linux" + # See note above TERMUX_PKG_DEPENDS why we do not use a shared libuv. ./configure \ --prefix=$TERMUX_PREFIX \ @@ -34,5 +36,6 @@ termux_step_configure () { --shared-zlib \ --without-inspector \ --without-intl \ - --without-snapshot + --without-snapshot \ + --cross-compiling }