2015-10-26 21:26:56 +03:00
|
|
|
#!/bin/bash
|
2016-04-28 10:51:52 +03:00
|
|
|
# if not supplied otherwise, this script assumes that all 3rd-party dependencies are installed under ./opt
|
2015-10-26 21:26:56 +03:00
|
|
|
# you can install all 3rd-party dependencies by running make -f contrib/Makefiles/install-dependencies.gmake
|
|
|
|
|
|
|
|
set -e -o pipefail
|
2016-06-07 21:22:49 +03:00
|
|
|
OPT=${OPT:-$(pwd)/opt}
|
2016-04-28 10:51:52 +03:00
|
|
|
./bjam --with-irstlm=$OPT/irstlm-5.80.08 --with-boost=$OPT --with-cmph=$OPT --with-xmlrpc-c=$OPT --with-mm --with-probing-pt -j$(getconf _NPROCESSORS_ONLN) $@
|
2015-10-26 21:26:56 +03:00
|
|
|
|