64비트 리눅스 php Make 중 /usr/bin/ld: cannot find -lltdl 오류가 날경우
pi_krb5 -lkrb5 -lk5crypto -lcom_err -lidn -lssl -lcrypto -lz -lcrypt -lcrypt -o libphp4.la
/usr/bin/ld: cannot find -lltdl
collect2: ld returned 1 exit status
make: *** [libphp4.la] 오류 1
이 발생할 경우 php에서는 라이브러리를 /usr/lib에서 찾는데 64bit 리눅스에서는 /usr/lib64에 들어 있어서 생기는 문제이므로 아래와 같이 관련 파일을 링크를
걸어 주면 정상적인 해결이 가능
pi_krb5 -lkrb5 -lk5crypto -lcom_err -lidn -lssl -lcrypto -lz -lcrypt -lcrypt -o libphp4.la
/usr/bin/ld: cannot find -lltdl
collect2: ld returned 1 exit status
make: *** [libphp4.la] 오류 1
이 발생할 경우 php에서는 라이브러리를 /usr/lib에서 찾는데 64bit 리눅스에서는 /usr/lib64에 들어 있어서 생기는 문제이므로 아래와 같이 관련 파일을 링크를
걸어 주면 정상적인 해결이 가능
[root@www lib]# ln -s /usr/lib64/libltdl.so.3 libltdl.so.3
[root@www lib]# ln -s libltdl.so.3 libltdl.so
[root@www lib]# ln -s libltdl.so.3 libltdl.so



댓글을 달아 주세요
댓글 RSS 주소 : http://letmelove.net/blog/rss/comment/102