在安装htk时,make all中出现了错误:
(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我该怎么办?
发布于 2014-06-16 09:41:54
该标头bits/predefs.h附带了libc6-dev-i386 (32位头)。尝试:
sudo apt-get install libc6-dev-i386 参考资料:失踪的预防御
https://askubuntu.com/questions/379777
复制相似问题