Skip to content

Commit 35ead0f

Browse files
committed
javascript/Makefile: Change variable to EXPORTED_RUNTIME_METHODS.
EXTRA_EXPORTED_RUNTIME_METHODS is deprecated. Signed-off-by: Damien George <[email protected]>
1 parent 8637178 commit 35ead0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ports/javascript/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ OBJ += $(addprefix $(BUILD)/, $(SRC_SHARED:.c=.o))
4343
OBJ += $(addprefix $(BUILD)/, $(SRC_C:.c=.o))
4444

4545
JSFLAGS += -s ASYNCIFY
46-
JSFLAGS += -s EXPORTED_FUNCTIONS="['_mp_js_init', '_mp_js_init_repl', '_mp_js_do_str', '_mp_js_process_char', '_mp_hal_get_interrupt_char', '_mp_sched_keyboard_interrupt']" -s EXTRA_EXPORTED_RUNTIME_METHODS="['ccall', 'cwrap']" -s --memory-init-file 0 --js-library library.js
46+
JSFLAGS += -s EXPORTED_FUNCTIONS="['_mp_js_init', '_mp_js_init_repl', '_mp_js_do_str', '_mp_js_process_char', '_mp_hal_get_interrupt_char', '_mp_sched_keyboard_interrupt']" -s EXPORTED_RUNTIME_METHODS="['ccall', 'cwrap']" -s --memory-init-file 0 --js-library library.js
4747

4848
all: $(BUILD)/micropython.js
4949

0 commit comments

Comments
 (0)