Home | History | Annotate | only in /external/srec/tools/thirdparty/OpenFst
Up to higher level directory
NameDateSize
Android.mk20-Sep-201337
fst/20-Sep-2013
MODULE_LICENSE_APACHE220-Sep-20130
NOTICE20-Sep-201311.2K
README20-Sep-2013938

README

      1 OpenFst - Beta release version.  
      2 http://128.122.80.210/~openfst/twiki/pub/FST/FstDownload
      3 OpenFst-beta-20070801.tgz
      4 
      5 PLATFORMS:
      6 
      7   This version is known to work under linux using g++.
      8   The make files are unlikely to work on other platforms
      9   unmodified. Stay tuned for an autoconf build.
     10 	
     11 BUILDING:
     12 
     13   To build (rudimentary Makefiles for now):
     14 
     15     cd fst ; make all
     16 
     17   To test:
     18 
     19     cd fst ; make test
     20     # Note long compile on algo_test and pair-arc.so (many templates)
     21 
     22 USING WITH YOUR OWN PROGRAMS:
     23 
     24   Include "fst/lib/fstlib.h" (path must be relative to the OpenFst root
     25   directory). You need to link to fst/lib/libfst.so as well as libpthread
     26   and libdl. The linking is dynamic so that the Fst and Arc tpe
     27   DSO extensions can be used (see e.g. test/dso_test.sh).
     28 
     29 DOCUMENTATION: 
     30 
     31   At www.openfst.org.
     32 
     33 TO DO:
     34   1) remove/sanitize google-isms - e.g. flags and error handling in compat.*
     35   2) autoconf
     36   3) check portability
     37