Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/mosesdecoder.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lm
diff options
context:
space:
mode:
authorUlrich Germann <Ulrich.Germann@gmail.com>2015-09-07 12:11:16 +0300
committerUlrich Germann <Ulrich.Germann@gmail.com>2015-09-07 12:11:16 +0300
commit5f563035e6b58f4c06e998cc8be3f2441263641e (patch)
tree8960010e30fe614a3bf941bda0b00e7147e67f5f /lm
parent156934d43feb1fbc80170cc19af6b9ba0494d175 (diff)
parentefa10c5fe3ad8976b027fd2e71f66b8d5ccf4a5c (diff)
Merge branch 'master' into ranked-sampling
Diffstat (limited to 'lm')
-rw-r--r--lm/Jamfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/lm/Jamfile b/lm/Jamfile
index 0b5bbf259..a479e2d35 100644
--- a/lm/Jamfile
+++ b/lm/Jamfile
@@ -17,7 +17,7 @@ wrappers = ;
local with-nplm = [ option.get "with-nplm" ] ;
if $(with-nplm) {
lib nplm : : <search>$(with-nplm)/src ;
- obj nplm.o : wrappers/nplm.cc : <include>.. <include>$(with-nplm)/src <cxxflags>-fopenmp ;
+ obj nplm.o : wrappers/nplm.cc : <include>.. <include>$(with-nplm)/src <cxxflags>-fopenmp <include>$(with-nplm)/3rdparty/eigen <define>NPLM_DOUBLE_PRECISION=0 ;
alias nplm-all : nplm.o nplm ..//boost_thread : : : <cxxflags>-fopenmp <linkflags>-fopenmp <define>WITH_NPLM <library>..//boost_thread ;
wrappers += nplm-all ;
}