我在IntelliJ中调试应用程序,而JVM抱怨libpng的版本:
QSystemTrayIcon::setVisible: No Icon set
libpng warning: Application was compiled with png.h from libpng-1.4.0
libpng warning: Application is running with png.c from libpng-1.2.46
libpng error: Incompatible libpng version in application and library
我想检查在执行java程序期间正在加载哪个libpng文件(即文件的完整路径)。我怎样才能做到这一点?
接下来的问题是:如何确保它加载libpng版本1.4.0(它在我的系统上,但显然它首先找到了libpng 1.2.46)。
答案 0 :(得分:0)
在Unix上,您可以查看所有映射。如果加载了共享库,您可以在/proc/{pid}/maps
例如
address perms offset dev inode pathname
08048000-08056000 r-xp 00000000 03:0c 64593 /usr/sbin/gpm
08056000-08058000 rw-p 0000d000 03:0c 64593 /usr/sbin/gpm
08058000-0805b000 rwxp 00000000 00:00 0
40000000-40013000 r-xp 00000000 03:0c 4165 /lib/ld-2.2.4.so
40013000-40015000 rw-p 00012000 03:0c 4165 /lib/ld-2.2.4.so
4001f000-40135000 r-xp 00000000 03:0c 45494 /lib/libc-2.2.4.so
40135000-4013e000 rw-p 00115000 03:0c 45494 /lib/libc-2.2.4.so
4013e000-40142000 rw-p 00000000 00:00 0
bffff000-c0000000 rwxp 00000000 00:00 0