In a 64 bits systems, it fails if I try to compile a configure test with:
$ gcc -m32 -o conftest -L/usr/lib/i386-linux-gnu/ conftest.c -lfreetype /usr/bin/ld: cannot find -lfreetype collect2: ld returned 1 exit status but it is successful if I do:
$ gcc -m32 -o conftest conftest.c /usr/lib/i386-linux-gnu/libfreetype.so.6 Why can't ld find 32bit libfreetype.so.6 in the first case?