ncurses error on linux mint 17.2

New to FreeBASIC? Post your questions here.
Post Reply
hendri_ehlers
Posts: 1
Joined: Feb 15, 2016 13:51

ncurses error on linux mint 17.2

Post by hendri_ehlers »

Hi installed Freebasic on my linux mint 17.2 but when I'm compiling i get this error. .

Code: Select all

hendri@Hendrioffice ~/myc $ fbc test.bas
ld: cannot find -lncurses
From my C side, i know the linker is missing
Hope someone can help.
cha0s
Site Admin
Posts: 5319
Joined: May 27, 2005 6:42
Location: USA
Contact:

Re: fbc.exe not compiling

Post by cha0s »

I think you need to install the ncurses library. Try running this command:

Code: Select all

sudo apt-get install libncurses5-dev libncursesw5-dev
Post Reply