From mboxrd@z Thu Jan 1 00:00:00 1970 From: Benjamin Kosnik To: Robert Lipe Cc: Gabriel Dos Reis , gcc-patches@gcc.gnu.org, libstdc++@gcc.gnu.org Subject: Re: V3 PATCH: Some complex<> cleanup (1/2) Date: Wed, 20 Dec 2000 20:09:00 -0000 Message-id: References: <20001220215935.A28835@rjlhome.sco.com> X-SW-Source: 2000-12/msg01046.html > Thank you. libmath now compiles for me on my system with C99 vendor > headers. I can see nothing int he ChangeLogs to make me suspect this > or any other recent, but after removing my various kludges and doing an this part is good! thanks Gaby. > update in libstdc++-v3/ I now have a new error: > > [ ... ] > Making all in libio > make[2]: Nothing to be done for `all'. > Making all in libmath > make[2]: Nothing to be done for `all'. > Making all in libsupc++ > make[2]: Nothing to be done for `all'. > Making all in src > make[2]: *** No rule to make target `limitsMEMBERS.cc', needed by `limitsMEMBERS > .lo'. Stop. ... better, but now quite there yet.. > It looks like this is supposed to be a generated file, but I don't see > anything obvious in Makefile* or configure* that generates it. generated at configure time, by mknumeric_limits. What you can do is rm stamp-limits ./config.status --recheck in your build libstdc++-v3 directory. (Does stamp-limits exist?) Look at the output from this, the very end part should look like this: running mknumeric_limits /mnt/hd/ahimsa/bld-x86-gcc-libio/i686-pc-linux-gnu/libstdc++-v3/../../gcc/g++ -B/mnt/hd/ahimsa/bld-x86-gcc-libio/i686-pc-linux-gnu/libstdc++-v3/../../gcc/ -I/mnt/hd/ahimsa/bld-x86-gcc-libio/i686-pc-linux-gnu/libstdc++-v3/include -o /mnt/hd/ahimsa/bld-x86-gcc-libio/i686-pc-linux-gnu/libstdc++-v3/src/gen-num-limits /mnt/hd/bliss/src.gcc/libstdc++-v3/src/gen-num-limits.cc -nodefaultlibs -lgcc -lc It's probable that this doesn't end nicely for you. Can you do this and post what you find? thanks, benjamin