We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5f968a1 commit 33b4899Copy full SHA for 33b4899
1 file changed
component.mk
@@ -25,18 +25,16 @@ JERRY_GLOBAL_HEAP_SIZE ?= 1
25
26
# Compact (minimal profile) compilation profile makes the JerryScript library smaller
27
COMPONENT_VARS += JERRY_COMPACT_PROFILE
28
-JERRY_COMPACT_PROFILE ?= 1
+JERRY_COMPACT_PROFILE ?= 0
29
30
ifeq ($(JERRY_COMPACT_PROFILE),1)
31
JERRY_PROFILE := minimal
32
# Apply these flags to library and tool(s)
33
JERRY_COMPILER_FLAGS := \
34
JERRY_BUILTINS=0 \
35
- JERRY_ESNEXT=0 \
36
JERRY_UNICODE_CASE_CONVERSION=0
37
else
38
JERRY_PROFILE := es.next
39
-GLOBAL_CFLAGS += -DJERRY_ESNEXT=1
40
endif
41
42
JERRY_WEB_COMPILER := $(COMPONENT_PATH)/jsc/$(JERRY_PROFILE)
0 commit comments