blob: ebb87421c1bb753fd609f312595259fd5b6b58ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
PROJECT="gnunet"
TOOLDIR="toolchain"
export TOOLDIR
PATH="${SYSROOT}/${TOOLDIR}/bin:${SYSROOT}/${TOOLDIR}/opt/emscripten:${PATH}"
export PATH
EM_CONFIG="${SYSROOT}/${TOOLDIR}/etc/emscripten"
export EM_CONFIG
# Turns out the now default fastcomp does not support dlopen
export EMCC_FAST_COMPILER=0
# vim: filetype=sh
|