diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2013-04-25 18:33:08 -0400 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2013-04-25 18:36:01 -0400 |
| commit | 5314fb21030981485218fc4f26ac21308497fc68 (patch) | |
| tree | d06b7b950063c6b5a62387b2f2edefbdeed71ef3 /lib/fixedpoint | |
| parent | 95e23defb085ee1a846ec2d379368485921d5aee (diff) | |
| download | rockbox-5314fb21030981485218fc4f26ac21308497fc68.zip rockbox-5314fb21030981485218fc4f26ac21308497fc68.tar.gz rockbox-5314fb21030981485218fc4f26ac21308497fc68.tar.bz2 rockbox-5314fb21030981485218fc4f26ac21308497fc68.tar.xz | |
Add $(SHARED_CFLAGS) to fixedpoint.make to quash amd64 errors in 95e23de.
Thanks to Frank Gevaerts.
Change-Id: I6ca1d0258bfc70950d0ad5c2975d2bd88060b8a3
Diffstat (limited to 'lib/fixedpoint')
| -rw-r--r-- | lib/fixedpoint/fixedpoint.make | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/fixedpoint/fixedpoint.make b/lib/fixedpoint/fixedpoint.make index 9ee0e1f..0233e94 100644 --- a/lib/fixedpoint/fixedpoint.make +++ b/lib/fixedpoint/fixedpoint.make @@ -19,7 +19,7 @@ CORE_LIBS += $(FIXEDPOINTLIB) CORE_GCSECTIONS := yes endif -FIXEDPOINTLIB_FLAGS := $(CFLAGS) +FIXEDPOINTLIB_FLAGS := $(CFLAGS) $(SHARED_CFLAGS) # Do not use '-ffunction-sections' and '-fdata-sections' when compiling sdl-sim ifneq ($(findstring sdl-sim, $(APP_TYPE)), sdl-sim) |