summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2013-04-25 18:33:08 -0400
committerMichael Sevakis <jethead71@rockbox.org>2013-04-25 18:36:01 -0400
commit5314fb21030981485218fc4f26ac21308497fc68 (patch)
treed06b7b950063c6b5a62387b2f2edefbdeed71ef3
parent95e23defb085ee1a846ec2d379368485921d5aee (diff)
downloadrockbox-5314fb21030981485218fc4f26ac21308497fc68.tar.gz
rockbox-5314fb21030981485218fc4f26ac21308497fc68.zip
Add $(SHARED_CFLAGS) to fixedpoint.make to quash amd64 errors in 95e23de.
Thanks to Frank Gevaerts. Change-Id: I6ca1d0258bfc70950d0ad5c2975d2bd88060b8a3
-rw-r--r--lib/fixedpoint/fixedpoint.make2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/fixedpoint/fixedpoint.make b/lib/fixedpoint/fixedpoint.make
index 9ee0e1f0c7..0233e9499b 100644
--- a/lib/fixedpoint/fixedpoint.make
+++ b/lib/fixedpoint/fixedpoint.make
@@ -19,7 +19,7 @@ CORE_LIBS += $(FIXEDPOINTLIB)
19CORE_GCSECTIONS := yes 19CORE_GCSECTIONS := yes
20endif 20endif
21 21
22FIXEDPOINTLIB_FLAGS := $(CFLAGS) 22FIXEDPOINTLIB_FLAGS := $(CFLAGS) $(SHARED_CFLAGS)
23 23
24# Do not use '-ffunction-sections' and '-fdata-sections' when compiling sdl-sim 24# Do not use '-ffunction-sections' and '-fdata-sections' when compiling sdl-sim
25ifneq ($(findstring sdl-sim, $(APP_TYPE)), sdl-sim) 25ifneq ($(findstring sdl-sim, $(APP_TYPE)), sdl-sim)