Tagged Questions
0
votes
0answers
129 views
Ubuntu, updated boost from 1.46 to 1.52, linker asks for 1.46
I was having some trouble compiling with a piece of software using boost (wt, http://www.webtoolkit.eu/wt). I knew (from testing with another machine) that updating from 1.46 would solve my problem. I ...
1
vote
1answer
85 views
Where do I put self built libraries on OS X?
I downloaded and built a C, g++ library that I want to use in a couple of other C projects.
What is the best/standard directory to put the library in on OS X Snow Leopard?
/opt/local/lib/
...
0
votes
1answer
606 views
`GCC_4.2.0' not found (required by /usr/lib/libstdc++.so.6)
For a program, I am getting
GCC_4.2.0' not found (required by /usr/lib/libstdc++.so.6)
on a Debian AMD64 machine. I am guessing the most likely issue is that the program is linked against this ...
2
votes
1answer
784 views
How to build a self-sufficient gcc/glibc/binutils set in a non-standard path?
Suppose a set of custom-built gcc/glibc/binutils are in $prefix (e.g. /home/user/path)
I want:
gcc to look for libraries in $prefix/lib64 instead of /lib64
gcc to look for headers in ...