Merge pull request #68 from kwyxz/master

Picodrive core for Solaris
This commit is contained in:
Twinaphex 2018-01-23 11:41:12 +01:00 committed by GitHub
commit 4ad0087f4e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View File

@ -179,9 +179,10 @@ OBJS += $(OBJS_COMMON)
CFLAGS += $(addprefix -D,$(DEFINES))
ifneq ($(findstring gcc,$(CC)),)
ifneq ($(findstring SunOS,$(shell uname -a)),SunOS)
LDFLAGS += -Wl,-Map=$(TARGET).map
endif
endif
target_: $(TARGET)

View File

@ -53,6 +53,9 @@ ifeq ($(platform), unix)
DONT_COMPILE_IN_ZLIB = 1
CFLAGS += -DFAMEC_NO_GOTOS
use_sh2drc = 1
ifneq ($(findstring SunOS,$(shell uname -a)),)
CC=gcc
endif
# Portable Linux
else ifeq ($(platform), linux-portable)