From: Lucas Castro Date: Thu, 9 Jul 2020 16:50:26 +0000 (-0300) Subject: Fix issue #2251 (#2252) X-Git-Tag: working-ls180~396 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=68babb2ae4cf86e099f28ada45f7e86b37405a4c;p=yosys.git Fix issue #2251 (#2252) * Fix #2251 - YosysJS ReferenceError: _memset is not defined. Add '_memset' in emcc EXPORTED_FUNCTIONS in Makefile. --- diff --git a/Makefile b/Makefile index b9c3d14eb..ec8b38c48 100644 --- a/Makefile +++ b/Makefile @@ -247,7 +247,7 @@ CXXFLAGS := -std=c++11 $(filter-out -fPIC -ggdb,$(CXXFLAGS)) ABCMKARGS += ARCHFLAGS="-DABC_USE_STDINT_H -DABC_MEMALIGN=8" EMCCFLAGS := -Os -Wno-warn-absolute-paths EMCCFLAGS += --memory-init-file 0 --embed-file share -s NO_EXIT_RUNTIME=1 -EMCCFLAGS += -s EXPORTED_FUNCTIONS="['_main','_run','_prompt','_errmsg']" +EMCCFLAGS += -s EXPORTED_FUNCTIONS="['_main','_run','_prompt','_errmsg','_memset']" EMCCFLAGS += -s TOTAL_MEMORY=134217728 EMCCFLAGS += -s EXTRA_EXPORTED_RUNTIME_METHODS='["ccall", "cwrap"]' # https://github.com/kripken/emscripten/blob/master/src/settings.js