This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: Weird x86 Linux/GNU crashes
On Tue, Jul 30, 2002 at 04:10:56PM -0700, Mark Mitchell wrote:
>
> > (gdb) set env LD_DEBUG=libs
> > (gdb) run
>
> I get the attached output. Why is this mmx stuff showing up? And
It is for optimization. ld.so knows your CPU can do mmx.
> what are the bits about bash?
>
That is your problem. It may be in your gdb and/or bash. You can try
(gdb) set env LD_LIBRARY_PATH=.....
instead of
LD_LIBRARY_PATH=.... gdb ...
I use gdb 5.2.0_2002-06-27-cvs. It works for me.
H.J.