3

I get the following error when compiling speech_tools.

/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

It can't find -lcurses

Shyam K
  • 217
  • 1
  • 2
  • 14
Dave
  • 35
  • 3
  • 6

1 Answers1

3

This probably means you need to install lncurses (package: http://packages.ubuntu.com/nl/quantal/libncurses5-dev)

So ...

sudo apt-get install libncurses5-dev
Rinzwind
  • 293,910
  • 41
  • 570
  • 710