This is the mail archive of the libstdc++@gcc.gnu.org mailing list for the libstdc++ 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: Questions on running check-abi


On Sun, Oct 27, 2002 at 10:16:43AM +0100, Andreas Jaeger wrote:
> but it seems this does not set up everything right since libgcc_s.so.1
> is not found correctly:
> $ make check-abi
> ./abi_check: error while loading shared libraries: libgcc_s.so.1: cannot open shared object file: No such file or directory
> make: [check-abi] Error 127 (ignored)
> 
> (this is a system that has gcc 2.95 as default compiler and gcc 3.3
> installed into /opt/gcc).

Yeah, problem.  We were finding the installed libstdc++.so earlier,
so we introduced LD_RUN_PATH into the abi_check build rule, so that the
freshly-built library was found.  Now we're finding the system-installed
libgcc_s.so instead of the freshly-built one.  (I just ran ldd on my
build tree.)  I'll fix this.

You still won't be able to run the test from the top-level dir without
using the -C switch or some equivalent method.

Phil

-- 
I would therefore like to posit that computing's central challenge, viz. "How
not to make a mess of it," has /not/ been met.
                                                 - Edsger Dijkstra, 1930-2002


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