Tagged Questions
2
votes
1answer
59 views
Build Gimp from custom-path libraries
I'm installing Gimp (2.6.10) on Debian. The system has all the required libraries (dependencies) installed in the default directories, so giving to Gimp
./configure && make && make ...
2
votes
0answers
366 views
libbfd-2.22.so missing while compiling Binutils/Glibc/Zlib
When I try to compile Binutils, Glibc and Zlib using chroot on my LFS system, I get this error:
ar: error while loading shared libraries: libbfd-2.22.so: cannot open shared object file: No such ...
3
votes
1answer
1k views
Why can't ld find this library?
I'm not very knowledgeable on this topic, and therefore can't figure out why the following command does not work:
$ gfortran -o dsimpletest -O dsimpletest.o ../lib/libdmumps.a \
...
1
vote
2answers
166 views
How to avoid “make” redoing a library
I have a project for school.
In the root dir, I have 3 subdirs which all have a makefile (because there will be 3 executable files), and there is 1 lib dir.
This dir contains my library source files ...