You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 22, 2023. It is now read-only.
Copy file name to clipboardExpand all lines: tools/all.gyp
+5-2Lines changed: 5 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -122,11 +122,14 @@
122
122
'sources': [
123
123
'../src/platform_win32.cc',
124
124
'../src/node_stdio_win32.cc',
125
-
'../deps/uv/src/eio/eio.c', # file operations depend on eio to link. uv contains eio in unix builds, but not win32. So we need to compile it here instead.
125
+
# file operations depend on eio to link. uv contains eio in unix builds, but not win32. So we need to compile it here instead.
126
+
'../deps/uv/src/eio/eio.c',
126
127
],
127
128
'defines': [
128
-
'PTW32_STATIC_LIB',# we'll need to add pthread-win32 and build/depend on that.
129
+
'PTW32_STATIC_LIB',
129
130
'FD_SETSIZE=1024',
131
+
# we need to use node's preferred "win32" rather than gyp's preferred "win"
0 commit comments