JMVTI:Could找不到代理库
JMVTI:Could not find agent library
我为 Java 写了一个代理,它什么都不做,只是导出两个方法,只是为了检查它是否在 JVM 启动时加载。使用 mingw-w64 4.8.4(使用 JetBrains CLion)构建它。 Windows7 x64。
JNIEXPORT jint JNICALL
Agent_OnLoad(JavaVM *jvm, char *options, void *reserved){
return JNI_OK;
}
JNIEXPORT void JNICALL
Agent_OnUnload(JavaVM *vm){}
遇到错误运行宁
java -agentlib:"C:\JMVAgent\agent.dll"
Error occurred during initialization of VM
Could not find agent library libSampleAgent.dll on the library path,
with error: Can't find dependent libraries
我也将 agent.dll 放入 c:\windows\System32 和 运行 java w/o 代理完整路径,结果相同。
DependencyWalker 显示没有依赖错误
请帮忙找出我做错了什么
如果要指定代理库的完整路径,请使用 -agentpath
而不是 -agentlib
。
差异解释here。
我为 Java 写了一个代理,它什么都不做,只是导出两个方法,只是为了检查它是否在 JVM 启动时加载。使用 mingw-w64 4.8.4(使用 JetBrains CLion)构建它。 Windows7 x64。
JNIEXPORT jint JNICALL
Agent_OnLoad(JavaVM *jvm, char *options, void *reserved){
return JNI_OK;
}
JNIEXPORT void JNICALL
Agent_OnUnload(JavaVM *vm){}
遇到错误运行宁
java -agentlib:"C:\JMVAgent\agent.dll"
Error occurred during initialization of VM
Could not find agent library libSampleAgent.dll on the library path,
with error: Can't find dependent libraries
我也将 agent.dll 放入 c:\windows\System32 和 运行 java w/o 代理完整路径,结果相同。
DependencyWalker 显示没有依赖错误
请帮忙找出我做错了什么
如果要指定代理库的完整路径,请使用 -agentpath
而不是 -agentlib
。
差异解释here。