• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

m4/H29-Jan-2021-8,6347,773

src/H29-Jan-2021-78,23653,946

AUTHORSH A D29-Jan-2021534 2016

COPYINGH A D29-Jan-2021560 1410

INSTALLH A D29-Jan-20219.3 KiB238179

Makefile.amH A D29-Jan-202138 32

Makefile.inH A D29-Jan-202123.5 KiB758665

NEWSH A D29-Jan-20216.9 KiB143136

READMEH A D29-Jan-20212.1 KiB5139

aclocal.m4H A D29-Jan-202134.3 KiB977877

config.guessH A D29-Jan-202143.8 KiB1,5311,321

config.h.inH A D29-Jan-20211.6 KiB6342

config.subH A D29-Jan-202134.6 KiB1,7741,631

configureH A D29-Jan-2021536.5 KiB17,79214,985

configure.acH A D29-Jan-20212.4 KiB9884

depcompH A D29-Jan-202119.9 KiB689448

install-shH A D29-Jan-202113.3 KiB521344

ltmain.shH A D29-Jan-2021277 KiB9,6627,310

missingH A D29-Jan-202110.1 KiB332243

README

1OpenFst - Release 1.4
2
3OpenFst is a library for constructing, combining, optimizing, and
4searching weighted finite-state transducers (FSTs).
5
6REQUIREMENTS:
7  This version is known to work under Linux and MacOS using g++ (>= 4.6).
8  Expected to work wherever adequate POSIX (dlopen, ssize_t,
9  basename), c99 (snprintf, strtoll, <stdint.h>), and C++11 (<unordered_set>,
10  <unordered_map>, <forward_list>) support are available.
11
12INSTALLATION:
13  Follow the generic GNU build system instructions in ./INSTALL.  We
14  recommend configuring with --enable-static=no for faster
15  compiles.
16
17  Optional features:
18  --enable-bin             Build fst::script and command-line binaries (def: yes)
19  --enable-compact-fsts    Enable all CompactFst classes (def: no)
20  --enable-const-fsts      Enable all ConstFst classes (def: no)
21  --enable-far		   Enable FAR (FST Archive) extension (def: no)
22  --enable-linear-fsts     Enable Linear{Tagger,Classifier} Fst extensions (def: no)
23  --enable-lookahead-fsts  Enable LookAheadFst classes (def: no)
24  --enable-ngram-fsts      Enable NGramFst classes (def: no)
25  --enable-pdt             Experimental push-down transducer extensions (def: no
26)
27
28  Configuring with --enable-bin=no gives very fast compiles, but
29  excludes the command line utilities.
30
31  Compiling with '-Wall -Wno-sign-compare' under g++ should give no
32  warnings from this library.
33
34USAGE:
35  Assuming you've installed under the default /usr/local, the FST
36  binaries are found on /usr/local/bin.
37
38  To use in your own program, include <fst/fstlib.h> and compile
39  with '-I /usr/local/include'. The compiler must support C++11
40  (for g++ add the flag "-std=c++0x"). Link against /usr/local/lib/libfst.so
41  and -ldl. Set your LD_LIBRARY_PATH (or equivalent) to contain /usr/local/lib.
42
43
44  The linking is, by default, dynamic so that the Fst and Arc type DSO
45  extensions can be used correctly if desired. Any extensions will
46  be found under /usr/local/include/fst/extensions and /usr/local/lib/fst.
47
48DOCUMENTATION:
49  See www.openfst.org for general documentation.
50  See ./NEWS for updates since the last release.
51