just faced a little issue related to FreeBSD.
the last CodeLite IDE on this moment has the following line in "configure" file on 241 line:
and "gmake" fails to compile "codelite_indexer". when i tries, i get:echo " \$(CMP) -o codelite_indexer \$(codelite_indexer_objects) -lpthread -ldl " >> MakeFile
during my searching i've discovered this thread, which claims that/usr/bin/ld: cannot find -ldl
andThis is not a FreeBSD library. The error is that your software is
trying to look for it in the first place.
i've followed this advice and after i've removed "-ldl" from the line in "configure" file quoted above i've successfully compiled codelite_indexer and all CodeLite IDE as well.FreeBSD does not have libdl. The dlopen()
family of functions are included in libc. Remove -ldl from the
Makefile and report this bug to the software coders.
and now i have the last CodeLIte IDE compiled and installed on my FreeBSD 7.1 RELEASE box