From 7399069dc1ae72569f04f502404f4d3b4464d1f7 Mon Sep 17 00:00:00 2001 From: Fabrice Bellard Date: Wed, 19 Mar 2025 13:29:54 +0100 Subject: [PATCH] fixed examples/hello_module compilation (#240) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index be3f614..8d134c8 100644 --- a/Makefile +++ b/Makefile @@ -381,7 +381,7 @@ examples/hello: $(OBJDIR)/hello.o $(QJS_LIB_OBJS) # example of static JS compilation with modules HELLO_MODULE_SRCS=examples/hello_module.js -HELLO_MODULE_OPTS=-fno-string-normalize -fno-map -fno-promise -fno-typedarray \ +HELLO_MODULE_OPTS=-fno-string-normalize -fno-map -fno-typedarray \ -fno-typedarray -fno-regexp -fno-json -fno-eval -fno-proxy \ -fno-date -m examples/hello_module: $(QJSC) libquickjs$(LTOEXT).a $(HELLO_MODULE_SRCS)