I can't distclean if I don't have a Makefile to begin with...
I figured out how to do the pkg-config myself and got a working configure/Makefile, but now the system refuses to link due to multiarch shenanigans: there does not seem to be a libxxx.so in any of the 32-bit library directories, only libxxx.so.#, for libraries like libpng, libX11, etc. Is there anything I can do to fix this? This affects even a simple test compilation (echo 'main(){}' | g++ -m32 -o /dev/null -x c - -lpng; moving -m32 around and using -x c++ do not help), not just this one (so make distclean will not help). Thanks.
I figured out how to do the pkg-config myself and got a working configure/Makefile, but now the system refuses to link due to multiarch shenanigans: there does not seem to be a libxxx.so in any of the 32-bit library directories, only libxxx.so.#, for libraries like libpng, libX11, etc. Is there anything I can do to fix this? This affects even a simple test compilation (echo 'main(){}' | g++ -m32 -o /dev/null -x c - -lpng; moving -m32 around and using -x c++ do not help), not just this one (so make distclean will not help). Thanks.
This post has been edited by Andlabs: 25 October 2012 - 12:03 PM


00