summaryrefslogtreecommitdiff
path: root/data/node/make.sh
diff options
context:
space:
mode:
authorMCApollo <34170230+MCApollo@users.noreply.github.com>2019-05-28 22:04:11 +0000
committerMCApollo <34170230+MCApollo@users.noreply.github.com>2019-05-28 22:04:11 +0000
commitb0abdb6b120c7da0d7c2b9772264c047d46e34e5 (patch)
tree16b567323c26aec00a04408f41b932e2d42c3147 /data/node/make.sh
parent76428fb58ef1a05dbf3ca528d4d72a902816893b (diff)
Release candidate 2
Diffstat (limited to 'data/node/make.sh')
-rw-r--r--data/node/make.sh7
1 files changed, 5 insertions, 2 deletions
diff --git a/data/node/make.sh b/data/node/make.sh
index a7c375eaf..df1caa5ed 100644
--- a/data/node/make.sh
+++ b/data/node/make.sh
@@ -1,7 +1,10 @@
pkg:setup
-export CC="${PKG_TARG}-gcc"
-export CXX="${PKG_TARG}-g++"
+export _DEFINES="-DTARGET_OS_WATCH"
+# Disable fork(), exec() until jitless gets working correctly.
+
+export CC="${PKG_TARG}-gcc ${_DEFINES}"
+export CXX="${PKG_TARG}-g++ ${_DEFINES}"
export LD="${PKG_TARG}-ld"
export AR="${PKG_TARG}-ar"
export RANLIB="${PKG_TARG}-ranlib"