From c48ed60d69f2bddcaf1d4c398cc5d97000f5ea73 Mon Sep 17 00:00:00 2001 From: Kevin Howell Date: Mon, 3 Feb 2020 06:47:47 -0500 Subject: [PATCH] ENH Reduce TOTAL_MEMORY to 5MiB (#600) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 162389f13..d6929b5a3 100644 --- a/Makefile +++ b/Makefile @@ -27,7 +27,7 @@ LDFLAGS=\ $(CPYTHONROOT)/installs/python-$(PYVERSION)/lib/libpython$(PYMINOR).a \ $(LZ4LIB) \ -s "BINARYEN_METHOD='native-wasm'" \ - -s TOTAL_MEMORY=1073741824 \ + -s TOTAL_MEMORY=5242880 \ -s ALLOW_MEMORY_GROWTH=1 \ -s MAIN_MODULE=1 \ -s EMULATED_FUNCTION_POINTERS=1 \