mirror of
https://github.com/nodemcu/nodemcu-firmware.git
synced 2025-02-06 21:18:25 +08:00
The PR removed the bulk of non-newlib headers from the NodeMCU source base. app/libc has now been cut down to the bare minimum overrides to shadow the corresponding functions in the SDK's libc. The old c_xyz.h headerfiles have been nuked in favour of the standard <xyz.h> headers, with a few exceptions over in sdk-overrides. Again, shipping a libc.a without headers is a terrible thing to do. We're still living on a prayer that libc was configured the same was as a default-configured xtensa gcc toolchain assumes it is. That part I cannot do anything about, unfortunately, but it's no worse than it has been before. This enables our source files to compile successfully using the standard header files, and use the typical malloc()/calloc()/realloc()/free(), the strwhatever()s and memwhatever()s. These end up, through macro and linker magic, mapped to the appropriate SDK or ROM functions.
97 lines
2.5 KiB
Makefile
97 lines
2.5 KiB
Makefile
#
|
|
# This Makefile is called from the core Makefile hierarchy which is a hierarchical
|
|
# make which uses parent callbacks to implement inheritance. However if luac_cross
|
|
# build stands outside this, it uses the host toolchain to implement a separate
|
|
# host build of the luac.cross image.
|
|
#
|
|
.NOTPARALLEL:
|
|
|
|
summary ?= @true
|
|
|
|
CCFLAGS:= -I.. -I../../include -I../../uzlib
|
|
LDFLAGS:= -L$(SDK_DIR)/lib -L$(SDK_DIR)/ld -lm -ldl -Wl,-Map=mapfile
|
|
|
|
CCFLAGS += -Wall
|
|
|
|
DEFINES += -DLUA_CROSS_COMPILER
|
|
|
|
TARGET = host
|
|
|
|
ifeq ($(FLAVOR),debug)
|
|
CCFLAGS += -O0 -g
|
|
TARGET_LDFLAGS += -O0 -g
|
|
DEFINES += -DLUA_DEBUG_BUILD
|
|
else
|
|
FLAVOR = release
|
|
CCFLAGS += -O2
|
|
TARGET_LDFLAGS += -O2
|
|
endif
|
|
|
|
LUACSRC := luac.c lflashimg.c liolib.c loslib.c print.c
|
|
LUASRC := lapi.c lauxlib.c lbaselib.c lcode.c ldblib.c ldebug.c \
|
|
ldo.c ldump.c lfunc.c lgc.c linit.c llex.c \
|
|
lmathlib.c lmem.c loadlib.c lobject.c lopcodes.c lparser.c \
|
|
lrotable.c lstate.c lstring.c lstrlib.c ltable.c ltablib.c \
|
|
ltm.c lundump.c lvm.c lzio.c
|
|
UZSRC := uzlib_deflate.c crc32.c
|
|
|
|
#
|
|
# This relies on the files being unique on the vpath
|
|
#
|
|
SRC := $(LUACSRC) $(LUASRC) $(UZSRC)
|
|
vpath %.c .:..:../../libc:../../uzlib
|
|
|
|
ODIR := .output/$(TARGET)/$(FLAVOR)/obj
|
|
|
|
OBJS := $(SRC:%.c=$(ODIR)/%.o)
|
|
DEPS := $(SRC:%.c=$(ODIR)/%.d)
|
|
|
|
CFLAGS = $(CCFLAGS) $(DEFINES) $(EXTRA_CCFLAGS) $(STD_CFLAGS) $(INCLUDES)
|
|
DFLAGS = $(CCFLAGS) $(DDEFINES) $(EXTRA_CCFLAGS) $(STD_CFLAGS) $(INCLUDES)
|
|
|
|
CC := $(WRAPCC) gcc
|
|
|
|
ECHO := echo
|
|
|
|
BUILD_TYPE := $(shell $(CC) $(EXTRA_CCFLAGS) -E -dM - <../../../app/include/user_config.h | grep LUA_NUMBER_INTEGRAL | wc -l)
|
|
ifeq ($(BUILD_TYPE),0)
|
|
IMAGE := ../../../luac.cross
|
|
else
|
|
IMAGE := ../../../luac.cross.int
|
|
endif
|
|
|
|
.PHONY: test clean all
|
|
|
|
all: $(DEPS) $(IMAGE)
|
|
|
|
$(IMAGE) : $(OBJS)
|
|
$(summary) HOSTLD $@
|
|
$(CC) $(OBJS) -o $@ $(LDFLAGS)
|
|
|
|
test :
|
|
@echo CC: $(CC)
|
|
@echo SRC: $(SRC)
|
|
@echo OBJS: $(OBJS)
|
|
@echo DEPS: $(DEPS)
|
|
@echo IMAGE: $(IMAGE)
|
|
|
|
clean :
|
|
$(RM) -r $(ODIR)
|
|
|
|
ifneq ($(MAKECMDGOALS),clean)
|
|
-include $(DEPS)
|
|
endif
|
|
|
|
$(ODIR)/%.o: %.c
|
|
@mkdir -p $(ODIR);
|
|
$(summary) HOSTCC $(CURDIR)/$<
|
|
$(CC) $(if $(findstring $<,$(DSRCS)),$(DFLAGS),$(CFLAGS)) $(COPTS_$(*F)) -o $@ -c $<
|
|
|
|
$(ODIR)/%.d: %.c
|
|
@mkdir -p $(ODIR);
|
|
$(summary) DEPEND: HOSTCC $(CURDIR)/$<
|
|
@set -e; rm -f $@; \
|
|
$(CC) -M $(CFLAGS) $< > $@.$$$$; \
|
|
sed 's,\($*\.o\)[ :]*,$(ODIR)/\1 $@ : ,g' < $@.$$$$ > $@; \
|
|
rm -f $@.$$$$
|