Skip to content

Commit 91656c3

Browse files
HHHartmannTerryE
authored andcommitted
create luac.cross.{integer|float} (#2450)
Use separate names for the integer and float `luac.cross` binaries. Also adds local/lua directory which is already supported by tools makefile to build LFS image.
1 parent a57fe55 commit 91656c3

File tree

3 files changed

+24
-7
lines changed

3 files changed

+24
-7
lines changed

app/lua/luac_cross/Makefile

+9-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#
2-
# This Make file is called from the core Makefile hierarchy with is a hierarchical
3-
# make wwhich uses parent callbacks to implement inheritance. However is luac_cross
4-
# build stands outside this and uses the host toolchain to implement a separate
2+
# This Make file is called from the core Makefile hierarchy which is a hierarchical
3+
# make which uses parent callbacks to implement inheritance. However if luac_cross
4+
# build stands outside this it uses the host toolchain to implement a separate
55
# host build of the luac.cross image.
66
#
77
.NOTPARALLEL:
@@ -51,7 +51,12 @@ CC := $(WRAPCC) gcc
5151

5252
ECHO := echo
5353

54+
BUILD_TYPE := $(shell $(CC) $(EXTRA_CCFLAGS) -E -dM - <../../../app/include/user_config.h | grep LUA_NUMBER_INTEGRAL | wc -l)
55+
ifeq ($(BUILD_TYPE),0)
5456
IMAGE := ../../../luac.cross
57+
else
58+
IMAGE := ../../../luac.cross.int
59+
endif
5560

5661
.PHONY: test clean all
5762

@@ -65,6 +70,7 @@ test :
6570
@echo SRC: $(SRC)
6671
@echo OBJS: $(OBJS)
6772
@echo DEPS: $(DEPS)
73+
@echo IMAGE: $(IMAGE)
6874

6975
clean :
7076
$(RM) -r $(ODIR)

local/lua/.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Ignore everything
2+
*
3+
# But not this file itself.
4+
!.gitignore

tools/Makefile

+11-4
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
# Options
33
#
44

5-
FSSOURCE ?= ../local/fs/
6-
LUASOURCE ?= ../local/lua/
5+
FSSOURCE ?= ../local/fs
6+
LUASOURCE ?= ../local/lua
77
FLASHSIZE ?= 4mb 32mb 8mb
88
FLASH_SW = -S
99
SUBDIRS =
@@ -14,7 +14,7 @@ OBJDUMP = $(or $(shell which objdump),xtensa-lx106-elf-objdump)
1414
# Get the files to pack into the spiffs image
1515
#
1616

17-
SPIFFSFILES ?= $(patsubst $(FSSOURCE)%,%,$(shell find $(FSSOURCE) -name '*' '!' -name .gitignore ))
17+
SPIFFSFILES ?= $(patsubst $(FSSOURCE)/%,%,$(shell find $(FSSOURCE)/ -name '*' '!' -name .gitignore ))
1818

1919
#################################################################
2020
# Get the filesize of /bin/0x10000.bin and SPIFFS sizing
@@ -36,6 +36,13 @@ endif
3636

3737
LFSSOURCES := $(wildcard $(LUASOURCE)/*.lua)
3838

39+
BUILD_TYPE := $(shell $(CC) $(EXTRA_CCFLAGS) -E -dM - <../app/include/user_config.h | grep LUA_NUMBER_INTEGRAL | wc -l)
40+
ifeq ($(BUILD_TYPE),0)
41+
LUAC_CROSS := ../luac.cross
42+
else
43+
LUAC_CROSS := ../luac.cross.int
44+
endif
45+
3946
#############################################################
4047
# Rules base
4148
#
@@ -72,7 +79,7 @@ spiffsscript: remove-image LFSimage spiffsimg/spiffsimg
7279

7380
ifneq ($(LFSSOURCES),)
7481
LFSimage: $(LFSSOURCES)
75-
../luac.cross -f -o $(FSSOURCE)flash.img $(LFSSOURCES)
82+
$(LUAC_CROSS) -f -o $(FSSOURCE)flash.img $(LFSSOURCES)
7683
else
7784
LFSimage:
7885
rm -f $(FSSOURCE)flash.img

0 commit comments

Comments
 (0)