Difference between revisions of "OpenFST"

From Apertium
Jump to navigation Jump to search
(Created page with 'OpenFST is one of the FST backends used in HFST. ==Installation== <pre> wget http://openfst.cs.nyu.edu/twiki/pub/FST/FstDownload/openfst-1.2.7.tar.gz tar -xzvf openfst-1.2.7…')
 
 
(7 intermediate revisions by 3 users not shown)
Line 3: Line 3:
 
==Installation==
 
==Installation==
 
<pre>
 
<pre>
wget http://openfst.cs.nyu.edu/twiki/pub/FST/FstDownload/openfst-1.2.7.tar.gz
+
wget http://www.openfst.org/twiki/pub/FST/FstDownload/openfst-1.3.1.tar.gz &&
tar -xzvf openfst-1.2.7.tar.gz
+
tar -xzvf openfst-1.3.1.tar.gz &&
cd openfst-1.2.7/
+
cd openfst-1.3.1/ &&
./configure
+
./configure &&
make
+
make &&
 
sudo make install
 
sudo make install
 
</pre>
 
</pre>
  +
  +
==Troubleshooting==
  +
  +
<pre>
  +
../script/.libs/libfstscript.so: undefined reference to `dlopen'
  +
../script/.libs/libfstscript.so: undefined reference to `dlerror'
  +
</pre>
  +
  +
Search for the error on this page: http://www.openfst.org/twiki/bin/view/Forum/FstForum
  +
  +
See [http://paste.ubuntu.com/783708/ this paste] for the updated <code>Makefile.am</code>
  +
  +
==External links==
  +
* http://openfst.org/
   
   

Latest revision as of 14:13, 30 March 2012

OpenFST is one of the FST backends used in HFST.

Installation[edit]

wget http://www.openfst.org/twiki/pub/FST/FstDownload/openfst-1.3.1.tar.gz &&
tar -xzvf openfst-1.3.1.tar.gz &&
cd openfst-1.3.1/ &&
./configure &&
make &&
sudo make install

Troubleshooting[edit]

../script/.libs/libfstscript.so: undefined reference to `dlopen'
../script/.libs/libfstscript.so: undefined reference to `dlerror'

Search for the error on this page: http://www.openfst.org/twiki/bin/view/Forum/FstForum

See this paste for the updated Makefile.am

External links[edit]