This is the mail archive of the gcc-help@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: Cannot compile GCC on Ubuntu 7.10 x86_64


Igor Chudov <ichudov@Algebra.Com> writes:

> ./configure ; make clean all
1. do not build in source directory, read http://gcc.gnu.org/install/configure.html
2. "make clean" doesn't do what you want, you need "make distclean" or rm -r objdir (see above)

This is why --disable-multilib option didn't work for you as it should.

> ./configure --disable-multilib ; make clean all
[stuff snipped]
>
> The result I invariably get is this. HELP!!!!!!!!!!!

Or if you want to compile with multilibs, install ia32-libs-dev package. You may also
want to compile only c and c++ language frontends, see --enable-languages configure option.


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