faz todo o erro ao instalar o htk

0

Estou recebendo um erro ao fazer tudo enquanto instalo htk :

(cd HTKLib && make HTKLib.a) \
      || case "" in *k*) fail=yes;; *) exit 1;; esac;
make[1]: Entering directory '/home/dushyant/HTK/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 '/home/dushyant/HTK/htk/HTKLib'
make: *** [HTKLib/HTKLib.a] Error 1

O que devo fazer?

    
por dushyant 20.11.2013 / 11:34

1 resposta

1

Esse cabeçalho bits/predefs.h vem com libc6-dev-i386 (cabeçalhos de 32 bits). Experimente:

sudo apt-get install libc6-dev-i386 

Referência: Predefs.h em falta

    
por user.dz 16.06.2014 / 11:41