Browse Source

Merge pull request #291 from GordonMcGregor/osx_build

OS X compatible -map syntax for LDFLAGS
pull/292/head
Damien George 11 years ago
parent
commit
9307ef46ca
  1. 8
      unix/Makefile

8
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

Loading…
Cancel
Save