Re: [U-Boot] [PATCH] dm: mips: Import libgcc components from Linux

2012-07-31 Thread Mike Frysinger
On Friday 27 July 2012 15:10:00 Marek Vasut wrote: > Dear Mike Frysinger, > > On Friday 27 July 2012 14:35:25 Marek Vasut wrote: > > > --- a/arch/mips/lib/Makefile > > > +++ b/arch/mips/lib/Makefile > > > @@ -34,6 +34,8 @@ else > > > > > > COBJS-y += bootm.o > > > endif > > > > > > +COBJS-y +

Re: [U-Boot] [PATCH] dm: mips: Import libgcc components from Linux

2012-07-27 Thread Wolfgang Denk
Dear Marek Vasut, In message <1343414125-23359-1-git-send-email-ma...@denx.de> you wrote: > Import ashldr3, ashrdi3 and lshrdi3 to squash possible libgcc fp mismatch, > resulting in the following warning: > > mips-linux-gnu-ld: Warning: > /usr/lib/gcc/mips-linux-gnu/4.7/libgcc.a(_lshrdi3.o) uses

Re: [U-Boot] [PATCH] dm: mips: Import libgcc components from Linux

2012-07-27 Thread Marek Vasut
Dear Mike Frysinger, > On Friday 27 July 2012 14:35:25 Marek Vasut wrote: > > --- a/arch/mips/lib/Makefile > > +++ b/arch/mips/lib/Makefile > > @@ -34,6 +34,8 @@ else > > > > COBJS-y+= bootm.o > > endif > > > > +COBJS-y+= ashldi3.o ashrdi3.o lshrdi3.o > > pretty sure this belongs behi

Re: [U-Boot] [PATCH] dm: mips: Import libgcc components from Linux

2012-07-27 Thread Mike Frysinger
On Friday 27 July 2012 14:35:25 Marek Vasut wrote: > --- a/arch/mips/lib/Makefile > +++ b/arch/mips/lib/Makefile > @@ -34,6 +34,8 @@ else > COBJS-y += bootm.o > endif > > +COBJS-y += ashldi3.o ashrdi3.o lshrdi3.o pretty sure this belongs behind USE_PRIVATE_LIBGCC -mike signature.asc

[U-Boot] [PATCH] dm: mips: Import libgcc components from Linux

2012-07-27 Thread Marek Vasut
Import ashldr3, ashrdi3 and lshrdi3 to squash possible libgcc fp mismatch, resulting in the following warning: mips-linux-gnu-ld: Warning: /usr/lib/gcc/mips-linux-gnu/4.7/libgcc.a(_lshrdi3.o) uses hard float, u-boot uses soft float mips-linux-gnu-ld: Warning: /usr/lib/gcc/mips-linux-gnu/4.7/lib