I am trying to write a JVM TI sample agent on Mac OS X. I have Java 5 installed. I however wanted to know against which dynamic library should I link my sample agent code?

Thank you in advance.

-Prahalad

link|improve this question
feedback

2 Answers

up vote 1 down vote accepted

no need to link against anything...

gcc -I/path/to/java/include -shared -fPIC -o libagent.so agent.c

link|improve this answer
Yep that's right. I managed to get my build working :) – Prahalad Deshpande Feb 13 '11 at 14:53
feedback

It's libjvm.so on Linux, so I suspect something similar on the Mac.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.