v8: link against libsocket and libnsl on sunos
The V8 debugger requires BSD socket support. Solaris-like systems obviously support that but you need to link against the right libraries, it's not part of libc.
This commit is contained in:
parent
90587b1ccb
commit
0f33768059
4
deps/v8/tools/gyp/v8.gyp
vendored
4
deps/v8/tools/gyp/v8.gyp
vendored
@ -696,6 +696,10 @@
|
||||
}
|
||||
],
|
||||
['OS=="solaris"', {
|
||||
'link_settings': {
|
||||
'libraries': [
|
||||
'-lsocket -lnsl',
|
||||
]},
|
||||
'sources': [
|
||||
'../../src/platform-solaris.cc',
|
||||
'../../src/platform-posix.cc',
|
||||
|
Loading…
x
Reference in New Issue
Block a user