c++ - Problem Building Festival(Text to Speech) On Ubuntu -
i set ubuntu vm today build festival on ubuntu (i never ran before) did following setups
- on terminal window wrote following install gnu c++ compiler
sudo apt-get install build-essential
to test g++ wrote sample hello world , compiled using g++ , run , worked expected.
i downloaded files listed on festival download page
unpacked home directory(~) using
tar -zxvf *.tar.gz
- then wrote following 3 commands configure , make speech_tools
cd speech_tools ./configure make
but make returns following errors
/lib -leststring -lcurses -ldl -lncurses -lm -lstdc++ -lgcc /usr/bin/ld: cannot find -lcurses /usr/bin/ld: cannot find -lncurses collect2: ld returned 1 exit status make[1]: *** [ch_lab] error 1 make: *** [main] error 2
can tell me missing, being newbie ubuntu or other unix platform may missed important configuration, before have built festival on windows machine using cygwin. please me kind of urgent.
thanks lot mubashar
you need install development packages libncurses
. try
sudo apt-get install libncurses5-dev
Comments
Post a Comment