Skip to content

Commit 5214918

Browse files
joaocgreistargos
authored andcommitted
deps: make v8.h compatible with VS2015
There is a bug in the most recent version of VS2015 that affects v8.h and therefore prevents compilation of addons. Refs: https://stackoverflow.com/q/38378693 PR-URL: #32116 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
1 parent 6b3caf7 commit 5214918

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

common.gypi

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636

3737
# Reset this number to 0 on major V8 upgrades.
3838
# Increment by one for each non-official patch applied to deps/v8.
39-
'v8_embedder_string': '-node.3',
39+
'v8_embedder_string': '-node.4',
4040

4141
##### V8 defaults for Node.js #####
4242

deps/v8/include/v8.h

+6
Original file line numberDiff line numberDiff line change
@@ -1427,7 +1427,9 @@ class ScriptOriginOptions {
14271427
*/
14281428
class ScriptOrigin {
14291429
public:
1430+
#if defined(_MSC_VER) && _MSC_VER >= 1910 /* Disable on VS2015 */
14301431
V8_DEPRECATE_SOON("Use constructor with primitive C++ types")
1432+
#endif
14311433
V8_INLINE explicit ScriptOrigin(
14321434
Local<Value> resource_name, Local<Integer> resource_line_offset,
14331435
Local<Integer> resource_column_offset,
@@ -1438,7 +1440,9 @@ class ScriptOrigin {
14381440
Local<Boolean> is_wasm = Local<Boolean>(),
14391441
Local<Boolean> is_module = Local<Boolean>(),
14401442
Local<PrimitiveArray> host_defined_options = Local<PrimitiveArray>());
1443+
#if defined(_MSC_VER) && _MSC_VER >= 1910 /* Disable on VS2015 */
14411444
V8_DEPRECATE_SOON("Use constructor that takes an isolate")
1445+
#endif
14421446
V8_INLINE explicit ScriptOrigin(
14431447
Local<Value> resource_name, int resource_line_offset = 0,
14441448
int resource_column_offset = 0,
@@ -1938,9 +1942,11 @@ class V8_EXPORT ScriptCompiler {
19381942
public:
19391943
enum Encoding { ONE_BYTE, TWO_BYTE, UTF8 };
19401944

1945+
#if defined(_MSC_VER) && _MSC_VER >= 1910 /* Disable on VS2015 */
19411946
V8_DEPRECATED(
19421947
"This class takes ownership of source_stream, so use the constructor "
19431948
"taking a unique_ptr to make these semantics clearer")
1949+
#endif
19441950
StreamedSource(ExternalSourceStream* source_stream, Encoding encoding);
19451951
StreamedSource(std::unique_ptr<ExternalSourceStream> source_stream,
19461952
Encoding encoding);

0 commit comments

Comments
 (0)