mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
build: fix cctest target --with-dtrace
Currently the cctest target will fail on linux when configured --with-dtrace: /node-v9.2.0/out/Release/obj.target/node/src/node_dtrace.o: In function `node::DTRACE_NET_SERVER_CONNECTION( v8::FunctionCallbackInfo<v8::Value> const&)': node_dtrace.cc:(.text+0x103): undefined reference to `node_net__server__connection_semaphore' /node-v9.2.0/out/Release/obj.target/node/src/node_dtrace.o: In function `node::DTRACE_NET_STREAM_END( v8::FunctionCallbackInfo<v8::Value> const&)': ... This is because node_dtrace_provider.o is not linked by the cctest target. This commit tries to fix and simplify the conditions in cctest target so that node_dtrace.o is included for all operating systems that support dtrace, include node_dtrace_ustack.o for all operating systems except mac and linux, and include node_dtrace_provider.o for all operating systems except mac. PR-URL: https://github.com/nodejs/node/pull/17039 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
This commit is contained in:
parent
617e3e96e6
commit
c661dad086
25
node.gyp
25
node.gyp
@ -885,7 +885,20 @@
|
|||||||
[ 'node_use_dtrace=="true"', {
|
[ 'node_use_dtrace=="true"', {
|
||||||
'libraries': [
|
'libraries': [
|
||||||
'<(OBJ_PATH)<(OBJ_SEPARATOR)node_dtrace.<(OBJ_SUFFIX)',
|
'<(OBJ_PATH)<(OBJ_SEPARATOR)node_dtrace.<(OBJ_SUFFIX)',
|
||||||
]
|
],
|
||||||
|
'conditions': [
|
||||||
|
['OS!="mac" and OS!="linux"', {
|
||||||
|
'libraries': [
|
||||||
|
'<(OBJ_PATH)<(OBJ_SEPARATOR)node_dtrace_provider.<(OBJ_SUFFIX)',
|
||||||
|
'<(OBJ_PATH)<(OBJ_SEPARATOR)node_dtrace_ustack.<(OBJ_SUFFIX)',
|
||||||
|
]
|
||||||
|
}],
|
||||||
|
['OS=="linux"', {
|
||||||
|
'libraries': [
|
||||||
|
'<(SHARED_INTERMEDIATE_DIR)/node_dtrace_provider.o',
|
||||||
|
]
|
||||||
|
}],
|
||||||
|
],
|
||||||
}],
|
}],
|
||||||
[ 'OS=="win"', {
|
[ 'OS=="win"', {
|
||||||
'libraries': [
|
'libraries': [
|
||||||
@ -896,16 +909,6 @@
|
|||||||
'<(OBJ_PATH)<(OBJ_SEPARATOR)backtrace_posix.<(OBJ_SUFFIX)',
|
'<(OBJ_PATH)<(OBJ_SEPARATOR)backtrace_posix.<(OBJ_SUFFIX)',
|
||||||
],
|
],
|
||||||
}],
|
}],
|
||||||
[ 'node_use_dtrace=="true" and OS!="mac" and OS!="linux"', {
|
|
||||||
'copies': [{
|
|
||||||
'destination': '<(OBJ_DIR)/cctest/src',
|
|
||||||
'files': [
|
|
||||||
'<(OBJ_PATH)<(OBJ_SEPARATOR)node_dtrace_ustack.<(OBJ_SUFFIX)',
|
|
||||||
'<(OBJ_PATH)<(OBJ_SEPARATOR)node_dtrace_provider.<(OBJ_SUFFIX)',
|
|
||||||
'<(OBJ_PATH)<(OBJ_SEPARATOR)node_dtrace.<(OBJ_SUFFIX)',
|
|
||||||
]},
|
|
||||||
],
|
|
||||||
}],
|
|
||||||
[ 'node_shared_zlib=="false"', {
|
[ 'node_shared_zlib=="false"', {
|
||||||
'dependencies': [
|
'dependencies': [
|
||||||
'deps/zlib/zlib.gyp:zlib',
|
'deps/zlib/zlib.gyp:zlib',
|
||||||
|
Loading…
Reference in New Issue
Block a user