Skip to content

Commit 83b0aaa

Browse files
committed
deps: fix V8 build on SmartOS
PR-URL: #44741 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
1 parent 7a952e8 commit 83b0aaa

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
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.5',
39+
'v8_embedder_string': '-node.6',
4040

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

deps/v8/src/base/platform/memory.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@
2323
#include <malloc.h>
2424
#endif // !V8_OS_DARWIN
2525

26-
#if (V8_OS_POSIX && !V8_OS_AIX) || V8_OS_WIN
26+
#if (V8_OS_POSIX && !V8_OS_AIX && !V8_OS_SOLARIS) || V8_OS_WIN
2727
#define V8_HAS_MALLOC_USABLE_SIZE 1
28-
#endif // (V8_OS_POSIX && !V8_OS_AIX) || V8_OS_WIN
28+
#endif // (V8_OS_POSIX && !V8_OS_AIX && !V8_OS_SOLARIS) || V8_OS_WIN
2929

3030
namespace v8::base {
3131

0 commit comments

Comments
 (0)