diff options
author | Justin Hibbits <jhibbits@FreeBSD.org> | 2012-11-07 23:45:09 +0000 |
---|---|---|
committer | Justin Hibbits <jhibbits@FreeBSD.org> | 2012-11-07 23:45:09 +0000 |
commit | c757049235edc6ecca32c6c584f7d5582aaeb74a (patch) | |
tree | 8d8c4ccbc7450fce2f9dc5ef56aa8edccb25145d /cddl/usr.sbin/Makefile | |
parent | 44f17a81114497933ebb235f4c7c86a6d1b0a5db (diff) | |
download | src-c757049235edc6ecca32c6c584f7d5582aaeb74a.tar.gz src-c757049235edc6ecca32c6c584f7d5582aaeb74a.zip |
Implement DTrace for PowerPC. This includes both 32-bit and 64-bit.
There is one known issue: Some probes will display an error message along the
lines of: "Invalid address (0)"
I tested this with both a simple dtrace probe and dtruss on a few different
binaries on 32-bit. I only compiled 64-bit, did not run it, but I don't expect
problems without the modules loaded. Volunteers are welcome.
MFC after: 1 month
Notes
Notes:
svn path=/head/; revision=242723
Diffstat (limited to 'cddl/usr.sbin/Makefile')
-rw-r--r-- | cddl/usr.sbin/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cddl/usr.sbin/Makefile b/cddl/usr.sbin/Makefile index 42d124f90046..fb2c43738b5c 100644 --- a/cddl/usr.sbin/Makefile +++ b/cddl/usr.sbin/Makefile @@ -25,4 +25,10 @@ _lockstat= lockstat _dtrace= dtrace .endif +.if ${MACHINE_CPUARCH} == "powerpc" +_dtrace= dtrace +_dtruss= dtruss +_lockstat= lockstat +.endif + .include <bsd.subdir.mk> |