From feb7ddabab930359c045128134d942894ff5f4f8 Mon Sep 17 00:00:00 2001 From: aliaspider Date: Fri, 13 Nov 2015 01:10:59 +0100 Subject: build bix for non ARM platforms. (still not functional) --- Makefile | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 58aca57..42e8177 100644 --- a/Makefile +++ b/Makefile @@ -15,9 +15,13 @@ endif endif ifeq ($(platform), unix) - TARGET := libretro.so + TARGET := $(TARGET_NAME)_libretro.so fpic := -fPIC - SHARED := -shared -Wl,--version-script=libretro/link.T + SHARED := -shared -Wl,--version-script=libretro/link.T -Wl,--no-undefined + CFLAGS += -fno-builtin \ + -fno-exceptions -ffunction-sections \ + -fomit-frame-pointer -fgcse-sm -fgcse-las -fgcse-after-reload \ + -fweb -fpeel-loops else ifeq ($(platform), osx) TARGET := libretro.dylib fpic := -fPIC @@ -87,7 +91,7 @@ $(TARGET): $(OBJECTS) ifeq ($(STATIC_LINKING), 1) $(AR) rcs $@ $(OBJECTS) else - $(CXX) $(fpic) $(SHARED) $(INCLUDES) -o $@ $(OBJECTS) -lm + $(CC) $(fpic) $(SHARED) $(INCLUDES) -o $@ $(OBJECTS) -lm endif %.o: %.c -- cgit v1.2.3