• Home
Name Date Size #Lines LOC

..--

m4/03-May-2024-8,6347,773

src/03-May-2024-69,95048,011

AUTHORSD03-May-2024500 1915

Android.mkD03-May-2024684 2617

COPYINGD03-May-2024560 1410

INSTALLD03-May-20249.3 KiB238179

Makefile.amD03-May-202438 32

Makefile.inD03-May-202423.5 KiB758665

NEWSD03-May-20245.5 KiB117111

READMED03-May-20241.9 KiB4536

README.androidD03-May-202477 42

aclocal.m4D03-May-202434.3 KiB977877

config.guessD03-May-202443.8 KiB1,5311,321

config.h.inD03-May-20241.6 KiB6342

config.subD03-May-202434.6 KiB1,7741,631

configureD03-May-2024538.3 KiB17,83915,037

configure.acD03-May-20242.3 KiB9178

depcompD03-May-202419.9 KiB689448

fix_headers.shD03-May-2024423 2217

install-shD03-May-202413.3 KiB521344

ltmain.shD03-May-2024277 KiB9,6627,310

missingD03-May-202410.1 KiB332243

README

1OpenFst - Release 1.3
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, MacOS, and Solaris using
8  g++ (>= 4.1). Expected to work wherever adequate POSIX (dlopen, ssize_t,
9  basename), c99 (snprintf, strtoll, <stdint.h>), and tr1 (<tr1/ordered_set>,
10  <tr1/ordered_map>) 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-lookahead-fsts  Enable LookAheadFst classes (def: no)
23  --enable-ngram-fsts      Enable NGramFst classes (def: no)
24  --enable-pdt             Experimental push-down transducer extensions (def: no)
25
26  Configuring with --enable-bin=no gives very fast compiles, but
27  excludes the command line utilities.
28
29  Compiling with '-Wall -Wno-sign-compare' under g++ should give no
30  warnings from this library.
31
32USAGE:
33  Assuming you've installed under the default /usr/local, the FST
34  binaries are found on /usr/local/bin. To use in your own program,
35  include <fst/fstlib.h> and compile with '-I /usr/local/include'.
36  Link against /usr/local/lib/libfst.so and -ldl. Set your
37  LD_LIBRARY_PATH (or equivalent) to contain /usr/local/lib. The
38  linking is, by default, dynamic so that the Fst and Arc type DSO
39  extensions can be used correctly if desired. Any extensions will
40  be found under /usr/local/include/fst/extensions and /usr/local/lib/fst.
41
42DOCUMENTATION:
43  See www.openfst.org for general documentation.
44  See ./NEWS for updates since the last release.
45

README.android

1Copy of openfst-1.3.3-CL41851770.tar.gz from Greco3.
2
3Android.mk file added.
4