зеркало из https://github.com/mozilla/kaldi.git
6d356c8ed6
There are a few places in irstlm code where variable length arrays of non-POD types are causing errors with recent standards compliant c++ compilers. mdiadapt.cpp:1115:16: error: variable length array of non-POD element type 'streampos' (aka 'fpos<mbstate_t>') streampos pos[lmsize()+1]; ... This use is not part of the c++ standard. Some compilers like gcc support this through an extension while others like clang do not. This patch replaces all VLAs of non-POD types with std::vector. Also, configure.in is renamed to configure.ac to make recent automake distributions happy. git-svn-id: https://svn.code.sf.net/p/kaldi/code/sandbox/sail@3699 5e6a8d80-dfce-4ca6-a32a-6e07a63d50c8 |
||
---|---|---|
egs | ||
misc | ||
src | ||
tools | ||
windows | ||
.gitignore | ||
COPYING | ||
INSTALL | ||
README.txt |
README.txt
This is official Kaldi readme. You are now in Kaldi/trunk mirror. Read Kaldi.md and INSTALL.md first! See http://kaldi.sourceforge.net/ for documentation (may not always be fully up to date). This documentation is generated by running "doxygen" from the src/ directory, and appears in src/html/ I assume that the reader would like to (1) build the toolkit and (2) run the example system builds. To build the toolkit: see ./INSTALL. These instructions are valid for UNIX systems including various flavors of Linux; Darwin; and Cygwin (has not been tested on more "exotic" varieties of UNIX). For Windows installation instructions (excluding Cygwin), see windows/INSTALL. To run the example system builds, see egs/README.txt If you encounter problems (and you probably will), please do not hesitate to contact the developers at https://sourceforge.net/mailarchive/forum.php?forum_name=kaldi-developers In addition to specific questions, please let us know if there are specific aspects of the project that you feel could be improved, that you find confusing, etc., and which missing features you most wish it had.