From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrew Cagney To: Nitin Gupta Cc: gdb@sources.redhat.com Subject: Re: Using Simulator from within GDB Date: Mon, 30 Apr 2001 09:33:00 -0000 Message-id: <3AED93EC.B53593CF@cygnus.com> References: <3AE0AC95.A7DD8EA7@mobilygen.com> X-SW-Source: 2001-04/msg00225.html Nitin Gupta wrote: > This GDB was configured as "--host=i686-pc-linux-gnu > --target=m32r-elf"... > warning: little endian file does not match big endian target. This is because your target is hard-wired big-endian yet your object file (according to BFD) is little endian. > (gdb) target sim > Target (LITTLE_ENDIAN) and configured (BIG_ENDIAN) byte order in > conflict > Target (BIG_ENDIAN) and specified (LITTLE_ENDIAN) byte order in conflict The same problem. Andrew