We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4552231 commit 03dcbe3Copy full SHA for 03dcbe3
tools/install.py
@@ -177,6 +177,11 @@ def files(action):
177
else:
178
output_lib = 'libnode.' + variables.get('shlib_suffix')
179
action([output_prefix + output_lib], variables.get('libdir') + '/' + output_lib)
180
+ if 'true' == variables.get('node_use_dtrace'):
181
+ action(['out/Release/node.d'], 'lib/dtrace/node.d')
182
+
183
+ # behave similarly for systemtap
184
+ action(['src/node.stp'], 'share/systemtap/tapset/')
185
186
action(['deps/v8/tools/gdbinit'], 'share/doc/node/')
187
action(['deps/v8/tools/lldb_commands.py'], 'share/doc/node/')
0 commit comments