Skip to content

Commit 5290c9d

Browse files
targosMyles Borins
authored and
Myles Borins
committed
build: use BUILDTYPE when building V8 in Makefile
Without this it would always compile Release and Debug builds. Ref: #7477 PR-URL: #7482 Reviewed-By: Myles Borins <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent 79bd39c commit 5290c9d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ cctest: all
108108

109109
v8:
110110
tools/make-v8.sh v8
111-
$(MAKE) -C deps/v8 $(V8_ARCH) $(V8_BUILD_OPTIONS)
111+
$(MAKE) -C deps/v8 $(V8_ARCH).$(BUILDTYPE_LOWER) $(V8_BUILD_OPTIONS)
112112

113113
test: | cctest # Depends on 'all'.
114114
$(PYTHON) tools/test.py --mode=release doctool message pseudo-tty parallel sequential -J

0 commit comments

Comments
 (0)