Browse Source

build: always use V8_ENABLE_CHECKS in debug mode

Define `V8_ENABLE_CHECKS` in `common.gypi` for the debug mode.
Without this, these checks would only be present in the object files
generated from the V8 build, and so for inline functions in v8.h
multiple different definitions could be generated, where one definition
includes the check and the other does not.

Refs: https://github.com/nodejs/node/pull/11975#discussion_r108005423
PR-URL: https://github.com/nodejs/node/pull/12029
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Jason Ginchereau <jasongin@microsoft.com>
Reviewed-By: Hitesh Kanwathirtha <hiteshk@microsoft.com>
v6
Anna Henningsen 8 years ago
parent
commit
c68da89694
No known key found for this signature in database GPG Key ID: D8B9F5AEAE84E4CF
  1. 2
      common.gypi

2
common.gypi

@ -78,7 +78,7 @@
'variables': { 'variables': {
'v8_enable_handle_zapping': 1, 'v8_enable_handle_zapping': 1,
}, },
'defines': [ 'DEBUG', '_DEBUG' ], 'defines': [ 'DEBUG', '_DEBUG', 'V8_ENABLE_CHECKS' ],
'cflags': [ '-g', '-O0' ], 'cflags': [ '-g', '-O0' ],
'conditions': [ 'conditions': [
['target_arch=="x64"', { ['target_arch=="x64"', {

Loading…
Cancel
Save