mirror of https://github.com/YosysHQ/yosys.git
Merge pull request #3347 from DanielHuisman/fix-3053
Fix typo in emcc flags (typo introduced by #3053)
This commit is contained in:
commit
cea7e85d60
2
Makefile
2
Makefile
|
@ -263,7 +263,7 @@ CXXFLAGS := -std=$(CXXSTD) $(filter-out -fPIC -ggdb,$(CXXFLAGS))
|
|||
ABCMKARGS += ARCHFLAGS="-DABC_USE_STDINT_H -DABC_MEMALIGN=8"
|
||||
EMCC_CXXFLAGS := -Os -Wno-warn-absolute-paths
|
||||
EMCC_LDFLAGS := --memory-init-file 0 --embed-file share
|
||||
EMCC_LDFLAGS := -s NO_EXIT_RUNTIME=1
|
||||
EMCC_LDFLAGS += -s NO_EXIT_RUNTIME=1
|
||||
EMCC_LDFLAGS += -s EXPORTED_FUNCTIONS="['_main','_run','_prompt','_errmsg','_memset']"
|
||||
EMCC_LDFLAGS += -s TOTAL_MEMORY=134217728
|
||||
EMCC_LDFLAGS += -s EXPORTED_RUNTIME_METHODS='["ccall", "cwrap"]'
|
||||
|
|
Loading…
Reference in New Issue