[haiku-commits] haiku: hrev44214 - build/jam/board/sam460ex

  • From: revol@xxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Thu, 31 May 2012 01:06:02 +0200 (CEST)

hrev44214 adds 1 changeset to branch 'master'
old head: 0084fa520924353948934c0dab7d6a10d9da96fa
new head: 264aaaeeb5a5e49dbc6bdc399824786ea1d8fea3

----------------------------------------------------------------------------

264aaae: Sam460ex: force using hardware floating point
  
  * our current gcc can't be built with multilib for ppc anyway,
  * this allows going further on real hardware, though dprintf() sends wrong 
data to the serial port.

                                          [ François Revol <revol@xxxxxxx> ]

----------------------------------------------------------------------------

Revision:    hrev44214
Commit:      264aaaeeb5a5e49dbc6bdc399824786ea1d8fea3
URL:         http://cgit.haiku-os.org/haiku/commit/?id=264aaae
Author:      François Revol <revol@xxxxxxx>
Date:        Wed May 30 23:04:09 2012 UTC

----------------------------------------------------------------------------

1 file changed, 6 insertions(+), 4 deletions(-)
build/jam/board/sam460ex/BoardSetup |   10 ++++++----

----------------------------------------------------------------------------

diff --git a/build/jam/board/sam460ex/BoardSetup 
b/build/jam/board/sam460ex/BoardSetup
index 45b1c93..40884c7 100644
--- a/build/jam/board/sam460ex/BoardSetup
+++ b/build/jam/board/sam460ex/BoardSetup
@@ -28,8 +28,10 @@ HAIKU_BOARD_LOADER_STACK_BASE = 0x02000000 ;
 # gcc flags for the specific cpu
 #
 
-HAIKU_KERNEL_CCFLAGS += -mcpu=440 -mtune=440 -msoft-float ;
-HAIKU_KERNEL_C++FLAGS += -mcpu=440 -mtune=440 -msoft-float ;
-HAIKU_CCFLAGS += -mcpu=440 -mtune=440 -msoft-float ;
-HAIKU_C++FLAGS += -mcpu=440 -mtune=440 -msoft-float ;
+HAIKU_KERNEL_PIC_CCFLAGS += -mcpu=440fp -mtune=440fp ;
+HAIKU_KERNEL_PIC_C++FLAGS += -mcpu=440fp -mtune=440fp ;
+HAIKU_KERNEL_CCFLAGS += -mcpu=440fp -mtune=440fp ;
+HAIKU_KERNEL_C++FLAGS += -mcpu=440fp -mtune=440fp ;
+HAIKU_CCFLAGS += -mcpu=440fp -mtune=440fp ;
+HAIKU_C++FLAGS += -mcpu=440fp -mtune=440fp ;
 


Other related posts:

  • » [haiku-commits] haiku: hrev44214 - build/jam/board/sam460ex - revol