[ion] Modularize the HTML simulator

This commit is contained in:
Romain Goyet
2020-03-21 21:30:34 -04:00
committed by EmilieNumworks
parent 05d24e0c61
commit edbd879b4b
6 changed files with 135 additions and 111 deletions

View File

@@ -31,6 +31,11 @@ $(eval $(call rule_for, \
$$(CXX) $$(CXXFLAGS) $$(SFLAGS) -c $$< -o $$@ \
))
$(eval $(call rule_for, \
CPP, %, %.inc, \
$$(CPP) -P $$< $$@ \
))
ifeq ($(OS),Windows_NT)
# Work around command-line length limit
# On Msys2 the max command line is 32 000 characters. Our standard LD command

View File

@@ -1,6 +1,7 @@
CC = emcc
CXX = emcc
LD = emcc
CPP = cpp
EMSCRIPTEN_ASYNC_SYMBOLS = \
SAFE_HEAP_LOAD \