From: Michael F. <mic...@sr...> - 2015-02-19 19:06:50
|
Potential issues: - Looks like openfst builds 32 bit (not 64) and uses VS 2010 - Kaldi will target 64 bit and uses VS 2012 (not sure if this is an issue yet) Patches: (1) The perl script that generates a VS 2012 project file from Makefiles tries to include a non-present file due to the perl script not interpreting # as a comment. Patch: $ svn diff src/matrix/Makefile Index: src/matrix/Makefile =================================================================== --- src/matrix/Makefile (revision 4904) +++ src/matrix/Makefile (working copy) @@ -10,7 +10,8 @@ # you can uncomment matrix-lib-speed-test if you want to do the speed tests. -TESTFILES = matrix-lib-test kaldi-gpsr-test #matrix-lib-speed-test +#matrix-lib-speed-test +TESTFILES = matrix-lib-test kaldi-gpsr-test OBJFILES = kaldi-matrix.o kaldi-vector.o packed-matrix.o sp-matrix.o tp-matrix.o \ matrix-functions.o qr.o srfft.o kaldi-gpsr.o compressed-matrix.o \ (2) generate_solution.pl has a typo. Patch: $ svn diff windows/generate_solution.pl Index: windows/generate_solution.pl =================================================================== --- windows/generate_solution.pl (revision 4904) +++ windows/generate_solution.pl (working copy) @@ -394,7 +394,7 @@ </PropertyGroup> <PropertyGroup Condition=\"'\$(Configuration)|\$(Platform)'=='Release|Win32'\" Label=\"Configuration\"> <ConfigurationType>" . $conftype . "</ConfigurationType> - <CharacterSet>Unicode</CharacterSeti> + <CharacterSet>Unicode</CharacterSet> <PlatformToolset>v110</PlatformToolset> <WholeProgramOptimization>true</WholeProgramOptimization> </PropertyGroup> Mike --- This email has been checked for viruses by Avast antivirus software. http://www.avast.com |