https://github.com/wilkeraziz/mosesdecoder
Raw File
Tip revision: ca5178b6845f4dd359d4b4adf87bba72a33f8a34 authored by MosesAdmin on 13 February 2016, 00:02:04 UTC
daily automatic beautifier
Tip revision: ca5178b
compile.sh
#!/bin/bash 
# this script assumes that all 3rd-party dependencies are installed under ./opt
# you can install all 3rd-party dependencies by running make -f contrib/Makefiles/install-dependencies.gmake

set -e -o pipefail
opt=$(pwd)/opt
./bjam --with-irstlm=$opt --with-boost=$opt --with-cmph=$opt --with-xmlrpc-c=$opt --with-mm --with-probing-pt -j$(getconf _NPROCESSORS_ONLN) $@

back to top