We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e6dc00 commit 8d65f17Copy full SHA for 8d65f17
tools/install.py
@@ -140,9 +140,13 @@ def headers(action):
140
], 'include/node/')
141
142
# Add the expfile that is created on AIX
143
- if sys.platform.startswith('aix'):
+ if os.isfile('out/Release/node.exp'):
144
action(['out/Release/node.exp'], 'include/node/')
145
146
+ # Add the x64 windows libfile
147
+ if os.isfile('Release/node.lib'):
148
+ action(['Release/node.lib'], 'include/node/')
149
+
150
subdir_files('deps/v8/include', 'include/node/', action)
151
152
if 'false' == variables.get('node_shared_cares'):
0 commit comments