c757049235
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
27 lines
429 B
Makefile
27 lines
429 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
.include "Makefile.inc"
|
|
|
|
SUBDIR= dtmalloc \
|
|
dtnfscl \
|
|
dtnfsclient \
|
|
dtrace \
|
|
dtraceall \
|
|
dtrace_test \
|
|
dtio \
|
|
lockstat \
|
|
profile \
|
|
prototype \
|
|
sdt \
|
|
systrace
|
|
|
|
.if ${MACHINE_CPUARCH} == "amd64" || ${MACHINE_CPUARCH} == "i386"
|
|
SUBDIR+= fasttrap fbt systrace_linux32
|
|
.endif
|
|
.if ${MACHINE_CPUARCH} == "amd64"
|
|
SUBDIR+= systrace_freebsd32
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|