intalando o htk no ubuntu 12.04 dentro do diretório bin

1

Estou com um erro ao tentar

$ sudo make all

os arquivos htk durante a instalação:

(cd HTKLib && make HTKLib.a) \
      || case "" in *k*) fail=yes;; *) exit 1;; esac;
make[1]: Entering directory '/bin/htk/HTKLib'
gcc  -m32 -ansi -D_SVID_SOURCE -DOSS_AUDIO -D'ARCH="x86_64"' -Wall -Wno-switch -g -O2 -I. -DPHNALG   -c -o HGraf.o HGraf.c
In file included from /usr/include/stdio.h:28:0,
                 from HShell.h:40,
                 from HGraf.c:54:
/usr/include/features.h:324:26: fatal error: bits/predefs.h: No such file or directory
compilation terminated.
make[1]: *** [HGraf.o] Error 1
make[1]: Leaving directory '/bin/htk/HTKLib'
make: *** [HTKLib/HTKLib.a] Error 1

este é o erro que recebi, consegui ler, mas não sabia o que fazer depois.

    
por msamido 27.02.2015 / 09:21

1 resposta

0

Você precisa instalar o seguinte pacote de desenvolvimento (o seguinte fornecendo bits/predefs.h ):

sudo apt-get install libc6-dev
    
por Sylvain Pineau 27.02.2015 / 09:28