Merge pull request #628 from Kijewski/fno-delete-null-pointer-checks

Do not assume 0x0 to be an unusable address
This commit is contained in:
Oleg Hahm 2014-02-05 20:20:37 +01:00
commit 535c49acb4

View File

@ -14,7 +14,7 @@ endif
# if you want to publish the board into the sources as an uppercase #define
BB = $(shell echo $(BOARD)|tr 'a-z' 'A-Z')
CPUDEF = $(shell echo $(CPU)|tr 'a-z' 'A-Z')
CFLAGS += -DBOARD=$(BB) -DCPU_$(CPUDEF)
CFLAGS += -DBOARD=$(BB) -DCPU_$(CPUDEF) -fno-delete-null-pointer-checks
export CFLAGS
export BINDIR =$(CURDIR)/bin/$(BOARD)/