File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ set(OUTPUT_NAME_DEBUG "starlingmonkey_embedding.debug.wasm")
2727set (OUTPUT_NAME_WEVAL "starlingmonkey_embedding_weval.wasm" )
2828
2929# Set the appropriate name based on current configuration
30- if (CMAKE_BUILD_TYPE STREQUAL "Debug" )
30+ if (CMAKE_BUILD_TYPE STREQUAL "Debug" OR CMAKE_BUILD_TYPE STREQUAL "RelWithDebInfo" )
3131 set (OUTPUT_FILENAME ${OUTPUT_NAME_DEBUG} )
3232elseif (WEVAL)
3333 set (OUTPUT_FILENAME ${OUTPUT_NAME_WEVAL} )
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ JCO ?= ./node_modules/.bin/jco
33STARLINGMONKEY_SRC ?= StarlingMonkey
44
55ifndef JCO
6- JCO = $(error No jco in PATH . Run npm install -g @bytecodealliance/jco )
6+ JCO = $(error No jco found . Run npm install. )
77endif
88
99# ifndef WASM_OPT
5252 rm -r obj
5353 rm lib/spidermonkey-embedding-splicer.js
5454 rm lib/starlingmonkey_embedding.wasm
55+ rm lib/starlingmonkey_embedding.debug.wasm
You can’t perform that action at this time.
0 commit comments