mirror of
https://github.com/moses-smt/mosesdecoder.git
synced 2024-11-14 10:47:21 +03:00
8 lines
323 B
Bash
Executable File
8 lines
323 B
Bash
Executable File
#!/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
|
|
./bjam --with-irstlm=./opt --with-boost=./opt --with-cmph=./opt --with-xmlrpc-c=./opt -j$(nproc) $@
|
|
|