|
Name |
|
Date |
Size |
#Lines |
LOC |
| .. | | - | - |
| m4/ | | 03-May-2024 | - | 8,069 | 7,230 |
| src/ | | 03-May-2024 | - | 65,435 | 44,497 |
| AUTHORS | D | 03-May-2024 | 463 | 18 | 14 |
| Android.mk | D | 03-May-2024 | 658 | 27 | 16 |
| COPYING | D | 03-May-2024 | 560 | 14 | 10 |
| INSTALL | D | 03-May-2024 | 9.3 KiB | 238 | 179 |
| LICENCE | D | 03-May-2024 | 560 | 14 | 10 |
| Makefile.am | D | 03-May-2024 | 38 | 3 | 2 |
| Makefile.in | D | 03-May-2024 | 22.7 KiB | 741 | 649 |
| NEWS | D | 03-May-2024 | 4.3 KiB | 92 | 86 |
| NOTICE | D | 03-May-2024 | 560 | 14 | 10 |
| README | D | 03-May-2024 | 1.9 KiB | 45 | 36 |
| README.android | D | 03-May-2024 | 100 | 4 | 3 |
| aclocal.m4 | D | 03-May-2024 | 34 KiB | 958 | 863 |
| config.guess | D | 03-May-2024 | 44.5 KiB | 1,534 | 1,318 |
| config.h.in | D | 03-May-2024 | 1.9 KiB | 73 | 49 |
| config.sub | D | 03-May-2024 | 33.3 KiB | 1,694 | 1,549 |
| configure | D | 03-May-2024 | 516 KiB | 17,201 | 13,212 |
| configure.ac | D | 03-May-2024 | 2.5 KiB | 95 | 82 |
| depcomp | D | 03-May-2024 | 18.2 KiB | 631 | 407 |
| install-sh | D | 03-May-2024 | 13.3 KiB | 521 | 344 |
| ltmain.sh | D | 03-May-2024 | 237.8 KiB | 8,414 | 6,482 |
| missing | D | 03-May-2024 | 11.2 KiB | 377 | 281 |
README
1OpenFst - Release 1.2
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-pdt Experimental push-down transducer extensions (def: no)
24 --with-icu Use ICU to provide unicode support (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
1Openfst openfst-1.2.10
2Updated to Google CL27738347
3
4Modified to use stlport, Android.mk file added.