21 lines
509 B
Bash
21 lines
509 B
Bash
|
#!/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"
|
||
|
export AR="emar"
|
||
|
|
||
|
CFGFLAGS="./configure --prefix=/usr --disable-shared --enable-static --disable-debugger --with-compiler=emscripten --without-ewf --without-pic --with-nonpic --without-gmp"
|
||
|
|
||
|
make mrproper
|
||
|
|
||
|
./configure ${CFGFLAGS} --host=emscripten && \
|
||
|
make -s -j ${MAKE_JOBS} DEBUG=0
|