summaryrefslogtreecommitdiffstatshomepage
path: root/unix
diff options
context:
space:
mode:
Diffstat (limited to 'unix')
-rw-r--r--unix/Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/unix/Makefile b/unix/Makefile
index 7bca495c26..37583149cf 100644
--- a/unix/Makefile
+++ b/unix/Makefile
@@ -12,7 +12,13 @@ include ../py/py.mk
# compiler settings
CFLAGS = -I. -I$(PY_SRC) -Wall -Werror -ansi -std=gnu99 -DUNIX $(CFLAGS_MOD) $(COPT)
-LDFLAGS = $(LDFLAGS_MOD) -lm -Wl,-Map=$@.map,--cref
+
+UNAME_S := $(shell uname -s)
+ ifeq ($(UNAME_S),Darwin)
+ LDFLAGS = $(LDFLAGS_MOD) -lm -Wl,-map,$@.map
+else
+ LDFLAGS = $(LDFLAGS_MOD) -lm -Wl,-Map=$@.map,--cref
+ endif
ifeq ($(MICROPY_MOD_TIME),1)
CFLAGS_MOD += -DMICROPY_MOD_TIME=1