Browse Source

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.
v0.7.4-release
Ben Noordhuis 13 years ago
parent
commit
0f33768059
  1. 4
      deps/v8/tools/gyp/v8.gyp

4
deps/v8/tools/gyp/v8.gyp

@ -696,6 +696,10 @@
}
],
['OS=="solaris"', {
'link_settings': {
'libraries': [
'-lsocket -lnsl',
]},
'sources': [
'../../src/platform-solaris.cc',
'../../src/platform-posix.cc',

Loading…
Cancel
Save