I'm running make
which passes the following flags to ld
:
LDLIBS=-ll -ldl -lreadline -lcurses
However, when running make
, the linker fails with:
/usr/bin/ld: cannot find -ll
collect2: error: ld returned 1 exit status
I'm really not sure what shared object library -ll
is referring to nor sure how to go about figuring it out.
I'm trying this on a CentOS machine, so I tried to install the 'Development Tools'
package, thinking it must be something pretty generic:
sudo yum groupinstall 'Development Tools'
But with no avail.
Where / what is the library? Any help would be greatly appreciated! Thanks!