File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 28
28
with :
29
29
name : nqc-native-${{ matrix.os }}
30
30
path : build/bin/
31
- - name : Archive WebAssembly build artifacts
31
+ - name : Archive JavaScript- WebAssembly build artifacts
32
32
uses : actions/upload-artifact@v4
33
33
with :
34
- name : nqc-WebAssembly-${{ matrix.os }}
35
- path : build/wasm/
34
+ name : nqc-JS- WebAssembly-${{ matrix.os }}
35
+ path : build/js- wasm/
Original file line number Diff line number Diff line change @@ -89,11 +89,11 @@ TCPOBJ ?= RCX_TcpPipe_none
89
89
#
90
90
OSTYPE := $(strip $(shell uname -s) )
91
91
92
- ifneq (,$(strip $(findstring $(TARGETTYPE ) , WebAssembly) ) )
93
- # WebAssembly
92
+ ifneq (,$(strip $(findstring $(TARGETTYPE ) , JS- WebAssembly) ) )
93
+ # WebAssembly embedded in JavaScript
94
94
CXX = emcc
95
95
OBJ_SUBDIR_NAME = wobj
96
- EXEC_SUBDIR_NAME = wasm
96
+ EXEC_SUBDIR_NAME = js- wasm
97
97
EXEC_EXT = .js
98
98
99
99
# Emscripten optimization flags documentation
@@ -216,7 +216,7 @@ $(EXEC_DIR)/nqc$(EXEC_EXT): compiler/parse.cpp $(OBJ)
216
216
# Emscripten build for WebAssembly
217
217
#
218
218
emscripten-emmake :
219
- emmake make exec TARGETTYPE=WebAssembly
219
+ emmake make exec TARGETTYPE=JS- WebAssembly
220
220
221
221
#
222
222
# general rule for compiling
You can’t perform that action at this time.
0 commit comments