Fix flags for RPi2

There's no point in tuning for the RPi1 CPU.
This commit is contained in:
Jonathan Schleifer 2015-11-07 18:03:20 +01:00
parent 95fd629fa3
commit 5213914cec
No known key found for this signature in database
GPG Key ID: 33E61C63EB4AE7B5

View File

@ -58,7 +58,7 @@ HAIKU_BOARD_SDIMAGE_SIZE = 128 ;
# gcc flags for the specific cpu
#
local flags = -mtune=arm1176jzf-s -march=armv7-a ;
local flags = -march=armv7-a -mfloat-abi=hard ;
HAIKU_ASFLAGS_$(HAIKU_PACKAGING_ARCH) += $(flags) ;
HAIKU_CCFLAGS_$(HAIKU_PACKAGING_ARCH) += $(flags) ;