Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
fst/ | 03-May-2024 | - | 18,374 | 11,951 | ||
Android.mk | D | 03-May-2024 | 37 | 2 | 1 | |
README | D | 03-May-2024 | 938 | 37 | 24 |
README
1OpenFst - Beta release version. 2http://128.122.80.210/~openfst/twiki/pub/FST/FstDownload 3OpenFst-beta-20070801.tgz 4 5PLATFORMS: 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 11BUILDING: 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 22USING 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 29DOCUMENTATION: 30 31 At www.openfst.org. 32 33TO DO: 34 1) remove/sanitize google-isms - e.g. flags and error handling in compat.* 35 2) autoconf 36 3) check portability 37