VoxForge
I am developing an interface for JULIUS and JACK(an audio server). But when I am compiling a code I am getting errors from the libraries. I have written cmake inorder to compile the libraries from JACK and JULIUS. I have manually set the path for JULIUS libraries. This is the following error I am getting:
/home/siri/Desktop/julius_new/julius-4.0/libjulius/include/julius/julius.h:41:27: error: julius/config.h: No such file or directory /home/siri/Desktop/julius_new/julius-4.0/libjulius/include/julius/julius.h:43:25: error: sent/config.h: No such file or directory
In this way I got for all other header files that are included in the julius.h.
And then I am getting this.
make[2]: *** [CMakeFiles/Julius_Client.dir/Julius_Client.o] Error 1 make[1]: *** [CMakeFiles/Julius_Client.dir/all] Error 2 make: *** [all] Error 2
All the files and directories are existing. Using the INCLUDE_DIRECTORIES command I have set a path in the cmake file.
Thanks, Siri.
--- (Edited on 3/13/2008 2:50 pm [GMT-0500] by siri1984) ---
--- (Edited on 3/13/2008 2:51 pm [GMT-0500] by siri1984) ---
--- (Edited on 3/14/2008 8:42 pm [GMT-0400] by siri1984) ---
--- (Edited on 3/14/2008 8:42 pm [GMT-0400] by siri1984) ---
Hi Siri,
Can you compile Julius by the usual approach (assuming the sources are in /home/kmaclean/bin/julius-4.0)?:
$ cd /home/kmaclean/bin/julius-4.0
$ ./configure --prefix=/home/kmaclean/bin/julius-4.0
$ make
$ make install
I get a minor error with the creation of the man file for generate-ngram, but the executables compile fine for me (Julius v4.0.1 fixes this).
It seems like you might have "configure" problems, but I am not familiar with cmake (I use GNU make - included in Fedora Core 6, on AMD64).
You might try using Julius v4.0.1 sources.
Ken
--- (Edited on 3/14/2008 8:53 pm [GMT-0400] by kmaclean) ---