aboutsummaryrefslogtreecommitdiff
path: root/make
diff options
context:
space:
mode:
authorkamg <none@none>2010-09-15 16:28:19 -0400
committerkamg <none@none>2010-09-15 16:28:19 -0400
commitd9c9b5aa933efb648bfe1aac0349a8ded27c6444 (patch)
tree3ff46dcf2ee326b85c4d4a7e4d14a690dd14a6f7 /make
parentd5d85bd075a4421f2e6f4ca030b1f21298f87005 (diff)
6974813: JVM needs to use demand loading for its DTrace probes
Summary: Pass -xlazyload to the 'dtrace -G' invocation Reviewed-by: phh, ysr
Diffstat (limited to 'make')
-rw-r--r--make/solaris/makefiles/dtrace.make2
1 files changed, 1 insertions, 1 deletions
diff --git a/make/solaris/makefiles/dtrace.make b/make/solaris/makefiles/dtrace.make
index 39ae1e46b..2338c0109 100644
--- a/make/solaris/makefiles/dtrace.make
+++ b/make/solaris/makefiles/dtrace.make
@@ -165,7 +165,7 @@ $(DTRACE).d: $(DTRACE_SRCDIR)/hotspot.d $(DTRACE_SRCDIR)/hotspot_jni.d \
$(DTRACE.o): $(DTRACE).d $(JVMOFFS).h $(JVMOFFS)Index.h $(DTraced_Files)
@echo Compiling $(DTRACE).d
- $(QUIETLY) $(DTRACE_PROG) $(DTRACE_OPTS) -C -I. -G -o $@ -s $(DTRACE).d \
+ $(QUIETLY) $(DTRACE_PROG) $(DTRACE_OPTS) -C -I. -G -xlazyload -o $@ -s $(DTRACE).d \
$(DTraced_Files) ||\
STATUS=$$?;\
if [ x"$$STATUS" = x"1" -a \