* [U-Boot] powerpc-linux-gnu-ld: Warning: lib_powerpc/fpu/libpostpowerpcfpu.o uses hard float, libpost.o uses soft float
@ 2011-01-20 20:37 Timur Tabi
2011-01-20 20:53 ` Scott Wood
0 siblings, 1 reply; 5+ messages in thread
From: Timur Tabi @ 2011-01-20 20:37 UTC (permalink / raw)
To: u-boot
I'm trying to build Kumar's repository, and I'm getting this error. Is anyone
else seeing this?
$ make P4080DS_config
awk '(NF && $1 !~ /^#/) { print $1 ": " $1 "_config; $(MAKE)" }' boards.cfg >
.boards.depend
Configuring for P4080DS board...
$ make -s
powerpc-linux-gnu-ld: Warning: lib_powerpc/fpu/libpostpowerpcfpu.o uses hard
float, libpost.o uses soft float
--
Timur Tabi
Linux kernel developer at Freescale
^ permalink raw reply [flat|nested] 5+ messages in thread* [U-Boot] powerpc-linux-gnu-ld: Warning: lib_powerpc/fpu/libpostpowerpcfpu.o uses hard float, libpost.o uses soft float 2011-01-20 20:37 [U-Boot] powerpc-linux-gnu-ld: Warning: lib_powerpc/fpu/libpostpowerpcfpu.o uses hard float, libpost.o uses soft float Timur Tabi @ 2011-01-20 20:53 ` Scott Wood 2011-01-20 20:59 ` Timur Tabi 0 siblings, 1 reply; 5+ messages in thread From: Scott Wood @ 2011-01-20 20:53 UTC (permalink / raw) To: u-boot On Thu, 20 Jan 2011 14:37:35 -0600 Timur Tabi <timur@freescale.com> wrote: > I'm trying to build Kumar's repository, and I'm getting this error. Is anyone > else seeing this? > > $ make P4080DS_config > awk '(NF && $1 !~ /^#/) { print $1 ": " $1 "_config; $(MAKE)" }' boards.cfg > > .boards.depend > Configuring for P4080DS board... > $ make -s > powerpc-linux-gnu-ld: Warning: lib_powerpc/fpu/libpostpowerpcfpu.o uses hard > float, libpost.o uses soft float I'm not sure what you mean by "Kumar's repository" (u-boot-mpc85xx.git?), but there hasn't been a "lib_powerpc" for a while now. Assuming you're trying to build a current tree in a workspace that hasn't been used in a while, try "make clean", or possbly "git clean -f -x -d" to be really sure. -Scott ^ permalink raw reply [flat|nested] 5+ messages in thread
* [U-Boot] powerpc-linux-gnu-ld: Warning: lib_powerpc/fpu/libpostpowerpcfpu.o uses hard float, libpost.o uses soft float 2011-01-20 20:53 ` Scott Wood @ 2011-01-20 20:59 ` Timur Tabi 2011-01-20 21:06 ` Scott Wood 0 siblings, 1 reply; 5+ messages in thread From: Timur Tabi @ 2011-01-20 20:59 UTC (permalink / raw) To: u-boot Scott Wood wrote: > I'm not sure what you mean by "Kumar's > repository" (u-boot-mpc85xx.git?), Yes. but there hasn't been a > "lib_powerpc" for a while now. Then what's this: http://git.denx.de/?p=u-boot/u-boot-mpc85xx.git;a=tree;f=post/lib_powerpc;h=0cccba6be270011a259aef734f2637e8d72ec7a1;hb=master > Assuming you're trying to build a current tree in a workspace that > hasn't been used in a while, try "make clean", or possbly "git clean -f > -x -d" to be really sure. This is from a freshly cloned tree. I'm running git bisect now. 2010.12-rc1 works -- Timur Tabi Linux kernel developer at Freescale ^ permalink raw reply [flat|nested] 5+ messages in thread
* [U-Boot] powerpc-linux-gnu-ld: Warning: lib_powerpc/fpu/libpostpowerpcfpu.o uses hard float, libpost.o uses soft float 2011-01-20 20:59 ` Timur Tabi @ 2011-01-20 21:06 ` Scott Wood 2011-01-21 0:03 ` Kumar Gala 0 siblings, 1 reply; 5+ messages in thread From: Scott Wood @ 2011-01-20 21:06 UTC (permalink / raw) To: u-boot On Thu, 20 Jan 2011 14:59:02 -0600 Timur Tabi <timur@freescale.com> wrote: > Scott Wood wrote: > > > I'm not sure what you mean by "Kumar's > > repository" (u-boot-mpc85xx.git?), > > Yes. > > but there hasn't been a > > "lib_powerpc" for a while now. > > Then what's this: > > http://git.denx.de/?p=u-boot/u-boot-mpc85xx.git;a=tree;f=post/lib_powerpc;h=0cccba6be270011a259aef734f2637e8d72ec7a1;hb=master Ah. "post/" was stripped off the name in the error message, so I didn't look there. Never mind. -Scott ^ permalink raw reply [flat|nested] 5+ messages in thread
* [U-Boot] powerpc-linux-gnu-ld: Warning: lib_powerpc/fpu/libpostpowerpcfpu.o uses hard float, libpost.o uses soft float 2011-01-20 21:06 ` Scott Wood @ 2011-01-21 0:03 ` Kumar Gala 0 siblings, 0 replies; 5+ messages in thread From: Kumar Gala @ 2011-01-21 0:03 UTC (permalink / raw) To: u-boot On Jan 20, 2011, at 3:06 PM, Scott Wood wrote: > On Thu, 20 Jan 2011 14:59:02 -0600 > Timur Tabi <timur@freescale.com> wrote: > >> Scott Wood wrote: >> >>> I'm not sure what you mean by "Kumar's >>> repository" (u-boot-mpc85xx.git?), >> >> Yes. >> >> but there hasn't been a >>> "lib_powerpc" for a while now. >> >> Then what's this: >> >> http://git.denx.de/?p=u-boot/u-boot-mpc85xx.git;a=tree;f=post/lib_powerpc;h=0cccba6be270011a259aef734f2637e8d72ec7a1;hb=master > > Ah. "post/" was stripped off the name in the error message, so I > didn't look there. The message is because the post FP code has real FP instructions (in asm I think) but we build -msoft-float - k ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2011-01-21 0:03 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2011-01-20 20:37 [U-Boot] powerpc-linux-gnu-ld: Warning: lib_powerpc/fpu/libpostpowerpcfpu.o uses hard float, libpost.o uses soft float Timur Tabi 2011-01-20 20:53 ` Scott Wood 2011-01-20 20:59 ` Timur Tabi 2011-01-20 21:06 ` Scott Wood 2011-01-21 0:03 ` Kumar Gala
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox