Browse Source

build: use BUILDTYPE when building V8 in Makefile

Without this it would always compile Release and Debug builds.

Ref: https://github.com/nodejs/node/issues/7477
PR-URL: https://github.com/nodejs/node/pull/7482
Reviewed-By: Myles Borins <myles.borins@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
v4.x
Michaël Zasso 9 years ago
committed by Myles Borins
parent
commit
5290c9d38c
  1. 2
      Makefile

2
Makefile

@ -108,7 +108,7 @@ cctest: all
v8:
tools/make-v8.sh v8
$(MAKE) -C deps/v8 $(V8_ARCH) $(V8_BUILD_OPTIONS)
$(MAKE) -C deps/v8 $(V8_ARCH).$(BUILDTYPE_LOWER) $(V8_BUILD_OPTIONS)
test: | cctest # Depends on 'all'.
$(PYTHON) tools/test.py --mode=release doctool message pseudo-tty parallel sequential -J

Loading…
Cancel
Save