From 78db1d95029b9c4b968cf57070badf500ed851cd Mon Sep 17 00:00:00 2001 From: Franklin Wei Date: Tue, 26 Dec 2017 23:38:17 -0500 Subject: duke3d: use hardware FPU if available Change-Id: Idd9fad7bc0604a553c282a0f8c663ad44030ecac --- apps/plugins/sdl/sdl.make | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'apps/plugins/sdl/sdl.make') diff --git a/apps/plugins/sdl/sdl.make b/apps/plugins/sdl/sdl.make index 663bc564f3..98346389fc 100644 --- a/apps/plugins/sdl/sdl.make +++ b/apps/plugins/sdl/sdl.make @@ -25,6 +25,10 @@ OTHER_INC += -I$(SDL_SRCDIR)/include SDLFLAGS = -I$(SDL_SRCDIR)/include $(filter-out -O%,$(PLUGINFLAGS)) \ -O3 -Wno-unused-parameter -Xpreprocessor -Wno-undef -Wcast-align -w +ifeq ($(ARCH_VERSION),6) + SDLFLAGS += -mfloat-abi=softfp +endif + ifndef APP_TYPE ### no target has a big enough plugin buffer ROCKS += $(SDL_OBJDIR)/duke3d.ovl -- cgit