This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: canadian cross trouble with libiberty location


Jim Wilson wrote:
Ah, I see the problem. You didn't explicitly say what make command you used, but it is fairly obvious that you did
make all-gcc

Correct.


This won't work, because all-gcc does not depend on ALL_BUILD_MODULES. If you do
make all
it will work. Or alternatively, you can do
make all-build-libiberty
make all-gcc


In gcc-3.4, just "make all-gcc" will work fine. Nathanael Nerode fixed this. Explicitly adding "make all-build-libiberty" should work for any modern gcc version, so it should be OK to hard code that if it is simpler.

Your timing is excellent. Thanks so much for the info; I'll try it out ASAP. - Dan

--
My technical stuff: http://kegel.com
My politics: see http://www.misleader.org for examples of why I'm for regime change


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]