File tree 1 file changed +12
-0
lines changed
1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -164,6 +164,18 @@ target_include_directories(qjs PUBLIC
164
164
165
165
if (EMSCRIPTEN)
166
166
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
+ )
167
179
target_compile_definitions (qjs_wasm PRIVATE ${qjs_defines} )
168
180
target_link_libraries (qjs_wasm m)
169
181
endif ()
You can’t perform that action at this time.
0 commit comments