Re: [Moses-support] Moses Compilation Error

2018-06-14 Thread Hieu Hoang
it looks like there is an incompatible version of xmlrpc-c library that moses is trying to link to. Add this to your bjam command --no-xmlrpc-c Hieu Hoang On 14 June 2018 at 09:08, Cheshta Kwatra wrote: > EXACT command executed - cd ~/mosesdecoder >

[Moses-support] Moses Compilation Error

2018-06-14 Thread Cheshta Kwatra
EXACT command executed - cd ~/mosesdecoder ./bjam --with-boost=~/boost_1_64_0 -j4 I am working on Ubuntu 14.04 LTS build.log.gz Description: application/gzipped-tar ___ Moses-support mailing list

[Moses-support] Moses Compilation error

2017-04-04 Thread Adel Khalifa
Hello, When compiling moses I face an issue ./bjam --with-boost=/my_install_to/boost_1_63_0/ --with-srilm=/my_install_to/srilm --with-irstlm=/my_install_to/irstlm --with-giza=/my_install_to/tools -j2 fatal: No names found, cannot describe anything. ln: failed to create symbolic link

Re: [Moses-support] Moses Compilation Error

2015-10-27 Thread Ergun Bicici
Ok. Nice...it compiled. Regards, Ergun Ergun Bicici Koc University On Tue, Oct 27, 2015 at 4:34 PM, Ulrich Germann wrote: > in mosesdecoder root directory: > > make -f contrib/Makefiles/install-dependencies.gmake xmlrpc > > then > > ./bjam --with-xmlrpc-c=./opt .

[Moses-support] Moses Compilation Error

2015-10-27 Thread Ergun Bicici
Hi, I get the following error when compiling Moses: ./bjam -q --max-kenlm-order=10 --git --prefix=/project/qtleap/software/moses/latest XMLRPC-C: USING VERSION 1.16.33 FROM /usr gcc.compile.c++ contrib/server/bin/gcc-4.6/release/link-static/threading-multi/mosesserver.o

Re: [Moses-support] Moses Compilation Error

2015-10-27 Thread Ulrich Germann
in mosesdecoder root directory: make -f contrib/Makefiles/install-dependencies.gmake xmlrpc then ./bjam --with-xmlrpc-c=./opt . - Uli On Tue, Oct 27, 2015 at 2:48 PM, Hieu Hoang wrote: > what version of xmlrpc-c are you using? The compilation says > While building

Re: [Moses-support] Moses Compilation Error

2015-10-27 Thread Hieu Hoang
what version of xmlrpc-c are you using? The compilation says While building mosesserver ... ! !!! You are linking the XMLRPC-C library; Must be v.1.32 (September 2012) or higher !!!

Re: [Moses-support] Moses Compilation Error

2015-03-09 Thread Hieu Hoang
can you send me the exact build.log. what happens when you don't link to IRSTLM? Hieu Hoang Research Associate (until March 2015) University of Edinburgh http://www.hoang.co.uk/hieu On 9 March 2015 at 18:12, Nisheeth Joshi njoshi...@gmail.com wrote: Hi I am getting the same error with

Re: [Moses-support] Moses Compilation error

2014-02-26 Thread priyanka
Thanks Hieu for your reply. I tried compiling moses without srilm, but I am still getting the same error. Can you please suggest any other solution, to resolve this issue. Thanks, Priyanka On 2014-02-25 22:28, Hieu Hoang wrote: There's a problem with your SRILM library. My advise - don't

Re: [Moses-support] Moses Compilation error

2014-02-25 Thread Hieu Hoang
There's a problem with your SRILM library. My advise - don't bother linking to SRILM. KenLM is much better than SRILM for most purposes these days Your compilation command should be as simple as bjam -a -j2 On 25 February 2014 07:36, priyanka priya...@cse.iitb.ac.in wrote: Hello

[Moses-support] Moses compilation error with g++ 4.6.1

2011-12-23 Thread Mikel Forcada
Dear moses-support The hybrid EBMT/SMT system OpenMaTrEx (http://www.openmatrex.org) uses GIZA++, Moses and IRSTLM. We provide an installer in the webpage for version 0.98 (http://openmatrex.org/OpenMaTrEx-installer-0.98 http://openmatrex.org/OpenMaTrEx-installer-0.98) which compiled with

Re: [Moses-support] Moses compilation error with g++ 4.6.1

2011-12-23 Thread Barry Haddow
Hi Mikel That's a very old version of moses. It's moved to github now, so I'd recommend you grab the latest from https://github.com/moses-smt/mosesdecoder. Your versions of giza and irstlm are also out-of-date, so you should go for the latest versions, especially with an up-to-date compiler,

Re: [Moses-support] Moses compilation error with g++ 4.6.1

2011-12-23 Thread Mikel Forcada
Thanks a lot, Barry. I tried to compile moses from github as explained in :http://www.statmt.org/moses/?n=Development.GetStarted . However the build failed as I don't get any moses inside moses-cmd. bjam says: ...failed gcc.link

Re: [Moses-support] Moses compilation error with g++ 4.6.1

2011-12-23 Thread Barry Haddow
Hi Mikel I did get a report of problems with a very recent g++, but the reporter stopped responding to emails before we got to the bottom of it. Could you try running bjam with -q (so that it will stop at the first error) and -d+2 (so that it will report the commands that it's running) The

Re: [Moses-support] Moses compilation error with g++ 4.6.1

2011-12-23 Thread Mikel Forcada
Hi Barry, here's the output of bjam -q -d+2 when using g++ 4.6.1 after a fresh install: http://pastebin.com/Vhrya3y1 I hope it helps tracking down the bug. Feel free to ask for any other output. Cheers! Mikel Al 12/23/2011 07:45 PM, En/na Barry Haddow ha escrit: Hi Mikel I did get a

Re: [Moses-support] Moses compilation error with g++ 4.6.1

2011-12-23 Thread Mikel Forcada
Barry, I tried installing libboost-all-dev and it all worked, so please ignore the previous message. Apologies for the inconvenience. It would be nice to tell Ubuntu users to install that in the Getting Started webpage Thanks for the help! Mikel Al 12/23/2011 07:45 PM, En/na Barry Haddow

Re: [Moses-support] Moses compilation error with g++ 4.6.1

2011-12-23 Thread Barry Haddow
Hi Mikel That's great - thanks for letting me know. Yes, some more info about what parts of boost are required would be useful as moses needs one or two of the boost libraries as well as the headers. There's been quite a few changes to the build recently the documentation needs a bit of care

Re: [Moses-support] Moses compilation error with g++ 4.6.1

2011-12-23 Thread Mikel Forcada
Barry: Perhaps installing the whole libboost-all-dev is a bit of an overkill but it certainly worked. Thanks a lot! Mikel Hi Mikel That's great - thanks for letting me know. Yes, some more info about what parts of boost are required would be useful as moses needs one or two of the boost

Re: [Moses-support] Moses compilation error with g++ 4.6.1

2011-12-23 Thread Kenneth Heafield
Hi, For what it's worth, we currently use: libboost_thread libboost_program_options libboost_unit_test_framework in addition to the headers. But that list might grow and it's arguably more complicated to install a subset of the boost libraries. Is the documentation

[Moses-support] Moses compilation error

2009-05-17 Thread Sethu
Hi, I am encountering the below error on Moses compilation. I have been able to compile the SRILM, GIZA++, and mkcls properly earlier. Please let me know how should I overcome this problem. I am following the instructions as per http://www.statmt.org/wmt09/baseline.html Thanks in Advance. --