Amir Hardon writes: > but my problem is that everything I use, > uses the old binutils(Because /usr/bin is in the $PATH before > /usr/local/bin). > What should I do? Err, fix your path: if you use sh: export PATH=/usr/local/bin:$PATH if you use csh: set path = ( /usr/local/bin $path ) Andrew.