VoxForge
Hi everybody. I am using Fedora 20 32 bit. I exactly the followed what the tutorial says here. And when I enter 'make all', after some seconds of work going on, I finally get this error at the end. What does it mean, and how to get rid of it and make a successfull instalation of HTK. I will really appreciate your help. Thanks.
gcc -ansi -D_SVID_SOURCE -DOSS_AUDIO -D'ARCH="i686"' -Wall -Wno-switch -g -O2 -DSANITY -I. -I../HTKLib/ -c -o LPCalc.o LPCalc.c
gcc -ansi -D_SVID_SOURCE -DOSS_AUDIO -D'ARCH="i686"' -Wall -Wno-switch -g -O2 -DSANITY -I. -I../HTKLib/ -c -o LUtil.o LUtil.c
gcc -ansi -D_SVID_SOURCE -DOSS_AUDIO -D'ARCH="i686"' -Wall -Wno-switch -g -O2 -DSANITY -I. -I../HTKLib/ -c -o LWMap.o LWMap.c
gcc -ansi -D_SVID_SOURCE -DOSS_AUDIO -D'ARCH="i686"' -Wall -Wno-switch -g -O2 -DSANITY -I. -I../HTKLib/ -c -o LCMap.o LCMap.c
gcc -ansi -D_SVID_SOURCE -DOSS_AUDIO -D'ARCH="i686"' -Wall -Wno-switch -g -O2 -DSANITY -I. -I../HTKLib/ -c -o LGBase.o LGBase.c
if [ -f HLMLib.a ] ; then /bin/rm HLMLib.a ; fi
ar rv HLMLib.a LModel.o LPMerge.o LPCalc.o LUtil.o LWMap.o LCMap.o LGBase.o
ar: creating HLMLib.a
a - LModel.o
a - LPMerge.o
a - LPCalc.o
a - LUtil.o
a - LWMap.o
a - LCMap.o
a - LGBase.o
ranlib HLMLib.a
make[1]: Leaving directory `/home/gabam/bin/htk/HLMLib'
(cd HLMTools && make all) \
|| case "" in *k*) fail=yes;; *) exit 1;; esac;
make[1]: Entering directory `/home/gabam/bin/htk/HLMTools'
Makefile:77: *** missing separator (did you mean TAB instead of 8 spaces?). Stop.
make[1]: Leaving directory `/home/gabam/bin/htk/HLMTools'
make: *** [hlmtools] Error 1
[gabam@localhost htk]$
>how to get rid of [error] and make a successfull instalation of HTK (Fedora 20 32 bit)
$ sudo yum install libX11-devel
$ cd /home/[location of HTK on your computer]
$./configure --disable-hslab –disable-hlmtools
$ make clean
$ make all
$ sudo make install
you still get some errors, but HVite compiles, which is what you need for the tutorial
Ken