Running Solaris Studio on EL7/ JDK8.
1 2 3 4 5 |
$ solstudio Java HotSpot(TM) 64-Bit Server VM warning: ignoring option PermSize=64m; support was removed in 8.0 Java HotSpot(TM) 64-Bit Server VM warning: ignoring option MaxPermSize=400m; support was removed in 8.0 Java HotSpot(TM) 64-Bit Server VM warning: You have loaded library /opt/oracle/solarisstudio12.4/lib/solstudio/solstudio/modules/ext/lib/Linux-amd64/libbase.so which might have disabled stack guard. The VM will try to fix the stack guard now. It's highly recommended that you fix the library with 'execstack -c <libfile>', or link it with '-z noexecstack'. |
to fix the warning:
1 2 |
# yum install /usr/bin/execstack # execstack -c /opt/oracle/solarisstudio12.4/lib/solstudio/solstudio/modules/ext/lib/Linux-amd64/libbase.so |