Skip to content

Commit c7025de

Browse files
bradleythughesMylesBorins
authored andcommittedAug 16, 2017
build: support dtrace on ARM
Use the same dtrace command on ARM as on i386. Patch obtained from FreeBSD PR 218081 [1]. 1. https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=218081 PR-URL: #12193 Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: James M Snell <[email protected]>
1 parent b7c7112 commit c7025de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎node.gyp

+1-1
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,7 @@
488488
'<(OBJ_DIR)/node/src/node_dtrace_ustack.o'
489489
],
490490
'conditions': [
491-
[ 'target_arch=="ia32"', {
491+
[ 'target_arch=="ia32" or target_arch=="arm"', {
492492
'action': [
493493
'dtrace', '-32', '-I<(SHARED_INTERMEDIATE_DIR)', '-Isrc',
494494
'-C', '-G', '-s', 'src/v8ustack.d', '-o', '<@(_outputs)',

0 commit comments

Comments
 (0)
Please sign in to comment.