I get error: /usr/bin/ld: cannot find -lltdl

danymax

New member
Joined
Oct 4, 2007
Messages
2
When build php I get:
/usr/bin/ld: cannot find -lltdl
collect2: ld returned 1 exit status
make: *** [libphp4.la] Error 1

Can Help me?

Ciao.
Daniele
 
Try this if you use CentOS or Fedora:
Code:
yum -y install libtool-libs

Then try "./build php n" again.
 
if you got this problem with ./build php y

and you got Debian OS

type : apt-get install libltdl3-dev

Its a independent system dlopen wrapper for GNU libtool

and apt-get install libltdl3 (if its not installed)


after retry with ./build php y

and you'll install it correctly :)
 
Back
Top