I'm learning C and playing with the ncurses lib. I have seen references to both -lcurses and -lncurses but I have yet to find any differences (both work when compiling).
Appreciate the help!
|
1
|
|
|
|
|
|
ncurses is an open-source clone of the original Unix curses library. libcurses.* usually points to libncurses.* to provide compatibility with the original library, so there would be no practical difference between using one over the other. If you do in fact have more than one 'curses-type' library installed, -lcurses would essentially link your program to the default one, whereas -lncurses would explicitly choose the ncurses implementation. |
||||
|
|
|
On my system (Slackware64 13.0), |
||
|
|
|
|
On my (fedora 11) PC /usr/lib/libcurses.so contains: "INPUT(-lncurses)". I think it means that the two form (-lcurses, -lncurses) is equivalent. |
||
|
|