[JBS] (JDK-8023287) HOTSPOT_BUILD_COMPILER needs to support "Sun Studio 12u3"
Daniel D. Daugherty
daniel.daugherty at oracle.com
Mon Aug 19 17:18:13 PDT 2013
HotSpot Runtime folks,
Here's a two line fix for getting the name of the SS12u3 compiler
correct. Not really worth a webrev (IMHO)...
The current (unfriendly) output looks like:
$ /java/re/jdk/1.8.0/promoted/all/b100/binaries/solaris-i586/bin/java
-Xinternalversion
Java HotSpot(TM) Server VM (25.0-b42) for solaris-x86 JRE
(1.8.0-ea-b100), built on Jul 25 2013 05:03:21 by "" with unknown
Workshop:0x5120
$ /java/re/jdk/1.8.0/promoted/all/b100/binaries/solaris-x64/bin/java
-Xinternalversion
Java HotSpot(TM) Server VM (25.0-b42) for solaris-x86 JRE
(1.8.0-ea-b100), built on Jul 25 2013 05:03:21 by "" with unknown
Workshop:0x5120
A couple of reviewers, please...
Dan
On 8/19/13 5:53 PM, Daniel Daugherty (JBS) wrote:
> Daniel Daugherty
> <https://jbs.oracle.com/bugs/secure/ViewProfile.jspa?name=dcubed>
> commented on Bug JDK-8023287
> <https://jbs.oracle.com/bugs/browse/JDK-8023287>
> *HOTSPOT_BUILD_COMPILER needs to support "Sun Studio 12u3"*
> <https://jbs.oracle.com/bugs/browse/JDK-8023287>
>
>
>
> Here's the proposed change:
>
> $ hg diff
> diff -r e5003079dfa5 src/share/vm/runtime/vm_version.cpp
> --- a/src/share/vm/runtime/vm_version.cpp Fri Aug 16 10:06:58 2013 -0700
> +++ b/src/share/vm/runtime/vm_version.cpp Mon Aug 19 16:50:40 2013 -0700
> @@ -231,6 +231,8 @@ const char* Abstract_VM_Version::interna
> #define HOTSPOT_BUILD_COMPILER "Workshop 5.9"
> #elif __SUNPRO_CC == 0x5100
> #define HOTSPOT_BUILD_COMPILER "Sun Studio 12u1"
> + #elif __SUNPRO_CC == 0x5120
> + #define HOTSPOT_BUILD_COMPILER "Sun Studio 12u3"
> #else
> #define HOTSPOT_BUILD_COMPILER "unknown Workshop:"
> XSTR(__SUNPRO_CC)
> #endif
>
> This message is automatically generated by JIRA.
> If you think it was sent incorrectly, please contact your JIRA
> administrators
> <https://jbs.oracle.com/bugs/secure/ContactAdministrators%21default.jspa>
> For more information on JIRA, see: http://www.atlassian.com/software/jira
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://mail.openjdk.java.net/pipermail/hotspot-runtime-dev/attachments/20130819/c021274c/attachment-0001.html
More information about the hotspot-runtime-dev
mailing list