Skip to content

Commit 4480b14

Browse files
targosevanlucas
authored andcommitted
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 94a486a commit 4480b14

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
@@ -112,7 +112,7 @@ cctest: all
112112

113113
v8:
114114
tools/make-v8.sh v8
115-
$(MAKE) -C deps/v8 $(V8_ARCH) $(V8_BUILD_OPTIONS)
115+
$(MAKE) -C deps/v8 $(V8_ARCH).$(BUILDTYPE_LOWER) $(V8_BUILD_OPTIONS)
116116

117117
test: all
118118
$(MAKE) build-addons

0 commit comments

Comments
 (0)