Skip to content

Commit 55f0bf6

Browse files
committed
feat: make emscripten works
1 parent e995085 commit 55f0bf6

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

CMakeLists.txt

+12
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,18 @@ target_include_directories(qjs PUBLIC
164164

165165
if(EMSCRIPTEN)
166166
add_executable(qjs_wasm ${qjs_sources})
167+
target_link_options(qjs_wasm PRIVATE
168+
# in emscripten 3.x, this will be set to 16k which is too small for quickjs. #write sth. to force github rebuild
169+
-sSTACK_SIZE=2097152 # let it be 2m = 2 * 1024 * 1024 = 2097152, otherwise, stack overflow may be occured at bootstrap
170+
-sNO_INVOKE_RUN
171+
-sNO_EXIT_RUNTIME
172+
-sMODULARIZE # do not mess the global
173+
-sEXPORT_ES6 # export js file to morden es module
174+
-sEXPORT_NAME=getQuickJs # give a name
175+
-sTEXTDECODER=1 # it will be 2 if we use -Oz, and that will cause js -> c string convertion fail
176+
-sNO_DEFAULT_TO_CXX # this project is pure c project, no need for c plus plus handle
177+
-sEXPORTED_RUNTIME_METHODS=ccall,cwrap
178+
)
167179
target_compile_definitions(qjs_wasm PRIVATE ${qjs_defines})
168180
target_link_libraries(qjs_wasm m)
169181
endif()

0 commit comments

Comments
 (0)