radare2/sys/emscripten.sh

31 lines
805 B
Bash
Raw Permalink Normal View History

2013-09-07 00:20:38 +00:00
#!/bin/sh
# find root
cd `dirname $PWD/$0` ; cd ..
#TODO: add support for ccache
# XXX. fails with >1
[ -z "${MAKE_JOBS}" ] && MAKE_JOBS=8
OLD_LDFLAGS="${LDFLAGS}"
unset LDFLAGS
export CC="emcc --ignore-dynamic-linking -Os"
2013-09-07 00:20:38 +00:00
export AR="emar"
CFGFLAGS="--prefix=/usr --with-compiler=emscripten"
CFGFLAGS="${CFGFLAGS} --host x86_64-unknown-linux --without-gperf"
CFGFLAGS="${CFGFLAGS} --disable-debugger --with-libr --without-gpl"
CFGFLAGS="${CFGFLAGS} --without-jemalloc"
2018-12-15 16:27:55 +00:00
CFGFLAGS="${CFGFLAGS} --without-fork" # no process support in Emscripten
CFGFLAGS="${CFGFLAGS} --with-static-themes"
2013-09-07 00:20:38 +00:00
make mrproper
cp -f plugins.emscripten.cfg plugins.cfg
./configure-plugins
2013-09-07 00:20:38 +00:00
./configure ${CFGFLAGS} --host=emscripten && \
make -s -j ${MAKE_JOBS} DEBUG=0
2020-04-12 12:14:19 +00:00
rm -f r2js.zip
zip r2js.zip binr/*/*.js binr/*/*/*.wasm