The following should be changed in order to be used with
Solaris:
in Class
ru.nlmk.eclipse.plugins.profiler.launch.ProfilerLaunchConfigurationDelegate
line 272:
if (SystemUtils.OS_NAME.equals("Linux")) {
should be replaced by:
if (SystemUtils.OS_NAME.equals("Linux") ||
SystemUtils.OS_NAME.equals("SunOS")) {
and line 230:
File lib = new File(findJreBin(configuration) +
"/../lib/i386");
should be replaced by:
File lib = new File(findJreBin(configuration) + "/../lib/"
+ SystemUtils.OS_ARCH);
I am still fighting with the compilation of the library and
will send you the library as soon as possible (I have only
very few time for it).
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Logged In: YES
user_id=333751
I don't have Solaris.
But you can build library from sources. Just compile it as for Linux.
Logged In: YES
user_id=793651
The following should be changed in order to be used with
Solaris:
in Class
ru.nlmk.eclipse.plugins.profiler.launch.ProfilerLaunchConfigurationDelegate
line 272:
if (SystemUtils.OS_NAME.equals("Linux")) {
should be replaced by:
if (SystemUtils.OS_NAME.equals("Linux") ||
SystemUtils.OS_NAME.equals("SunOS")) {
and line 230:
File lib = new File(findJreBin(configuration) +
"/../lib/i386");
should be replaced by:
File lib = new File(findJreBin(configuration) + "/../lib/"
+ SystemUtils.OS_ARCH);
I am still fighting with the compilation of the library and
will send you the library as soon as possible (I have only
very few time for it).