File tree Expand file tree Collapse file tree 2 files changed +13
-7
lines changed Expand file tree Collapse file tree 2 files changed +13
-7
lines changed Original file line number Diff line number Diff line change @@ -512,13 +512,13 @@ DEPS_EMSDK_BINARYEN_VERSION ?= main
512
512
DEPS_WABT_BUILD_OUT ?= $(DEPS_BUILD_DIR ) /wabt
513
513
514
514
# Define the path to the utility for converting WebAssembly binary files to the WebAssembly text format:
515
- DEPS_WABT_WASM2WAT ?= $(DEPS_WABT_BUILD_OUT ) /wasm2wat
515
+ DEPS_WABT_WASM2WAT ?= $(DEPS_WABT_BUILD_OUT ) /build/ wasm2wat
516
516
517
517
# Define the path to the utility for converting WebAssembly text format files to the WebAssembly binary format:
518
- DEPS_WABT_WAT2WASM ?= $(DEPS_WABT_BUILD_OUT ) /wat2wasm
518
+ DEPS_WABT_WAT2WASM ?= $(DEPS_WABT_BUILD_OUT ) /build/ wat2wasm
519
519
520
520
# Define the path to the utility for linking (merging) multiple WebAssembly files:
521
- DEPS_WABT_WASM_LINK ?= $(DEPS_WABT_BUILD_OUT ) /wasm-link
521
+ DEPS_WABT_WASM_LINK ?= $(DEPS_WABT_BUILD_OUT ) /build/ wasm-link
522
522
523
523
# Define the Cephes distribution to build (netlib, moshier, cephes-2.8):
524
524
DEPS_CEPHES_DIST ?= moshier
Original file line number Diff line number Diff line change @@ -161,7 +161,11 @@ deps-prerequisites-wabt:
161
161
# make deps-install-wabt
162
162
# /
163
163
deps-install-wabt : $(DEPS_WABT_BUILD_OUT ) deps-prerequisites-wabt
164
- $(QUIET ) cd $(DEPS_WABT_BUILD_OUT ) && $(CMAKE ) . && $(MAKE )
164
+ $(QUIET ) cd $(DEPS_WABT_BUILD_OUT ) && \
165
+ $(MKDIR_RECURSIVE ) build && \
166
+ cd build && \
167
+ $(CMAKE ) .. && \
168
+ $(CMAKE ) --build .
165
169
166
170
.PHONY : deps-install-wabt
167
171
@@ -177,9 +181,11 @@ deps-update-wabt: $(DEPS_WABT_BUILD_OUT)
177
181
$(QUIET ) cd $(DEPS_WABT_BUILD_OUT ) && \
178
182
$(GIT ) pull && \
179
183
$(GIT ) submodule update --init --recursive && \
180
- $(DELETE ) $(DELETE_FLAGS ) $(DEPS_WABT_BUILD_OUT ) /out &&
181
- $(CMAKE ) . && \
182
- $(MAKE )
184
+ $(DELETE ) $(DELETE_FLAGS ) $(DEPS_WABT_BUILD_OUT ) /build &&
185
+ $(MKDIR_RECURSIVE ) $(DEPS_WABT_BUILD_OUT ) /build && \
186
+ cd $(DEPS_WABT_BUILD_OUT ) /build && \
187
+ $(CMAKE ) .. && \
188
+ $(CMAKE ) --build .
183
189
184
190
.PHONY : deps-update-wabt
185
191
You can’t perform that action at this time.
0 commit comments