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:
authorRico Sennrich <rico.sennrich@gmx.ch>2015-09-03 20:15:29 +0300
committerRico Sennrich <rico.sennrich@gmx.ch>2015-09-03 20:15:29 +0300
commit8df6cb5bc6715d8f450c8cf86c392a9876a2ee3f (patch)
treee8a87bf86981a2a3cb320388e8f27f9cde9455c7 /lm
parent8aaf89faf52aad324099dc8b8658b53d1305ce47 (diff)
synchronize nplm jamfile options between moses/LM/Jamfile and lm/Jamfile
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 ;
}