Skip to content
This repository was archived by the owner on Oct 16, 2021. It is now read-only.

Commit e2a8141

Browse files
akos.palfigibfahn
authored andcommitted
deps: cherry pick d7f813b4 from V8 upstream
Original commit message: GYP: Don't pass -Wno-format-pedantic to GCC. This flag is not understood correctly by GCC and breaks the GCC ARM and MIPS optdebug builds. Patch from Brendan Kirby <brendan.kirby@imgtec.com> BUG= Review URL: https://codereview.chromium.org/1369273003 Cr-Commit-Position: refs/heads/master@{#31013} PR-URL: nodejs/node#15562 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Steven R Loomis <srloomis@us.ibm.com>
1 parent ebf3c8f commit e2a8141

File tree

2 files changed

+20
-3
lines changed

2 files changed

+20
-3
lines changed

deps/v8z/build/standalone.gypi

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -373,8 +373,25 @@
373373
# things when their commandline changes). Nothing should ever read this
374374
# define.
375375
'defines': ['CR_CLANG_REVISION=<!(<(DEPTH)/tools/clang/scripts/update.sh --print-revision)'],
376-
'cflags+': [
377-
'-Wno-format-pedantic',
376+
'conditions': [
377+
['host_clang==1', {
378+
'target_conditions': [
379+
['_toolset=="host"', {
380+
'cflags+': [
381+
'-Wno-format-pedantic',
382+
],
383+
}],
384+
],
385+
}],
386+
['clang==1', {
387+
'target_conditions': [
388+
['_toolset=="target"', {
389+
'cflags+': [
390+
'-Wno-format-pedantic',
391+
],
392+
}],
393+
],
394+
}],
378395
],
379396
}],
380397
],

deps/v8z/include/v8-version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#define V8_MAJOR_VERSION 4
1212
#define V8_MINOR_VERSION 5
1313
#define V8_BUILD_NUMBER 103
14-
#define V8_PATCH_LEVEL 50
14+
#define V8_PATCH_LEVEL 51
1515

1616
// Use 1 for candidates and 0 otherwise.
1717
// (Boolean macro values are not supported by all preprocessors.)

0 commit comments

Comments
 (0)