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

  1. on terminal window wrote following install gnu c++ compiler
sudo apt-get install build-essential 
  1. to test g++ wrote sample hello world , compiled using g++ , run , worked expected.

  2. i downloaded files listed on festival download page

  3. unpacked home directory(~) using

tar -zxvf *.tar.gz 
  1. 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

Popular posts from this blog

linux - Mailx and Gmail nss config dir -

c# - Is it possible to remove an existing registration from Autofac container builder? -

php - Mysql PK and FK char(36) vs int(10) -