mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 14:54:52 +02:00
8023033: PPC64 (part 13): basic changes for AIX
Added AIX includes alpha-sorted before BSD. Fix compilation issues with xlC in shared code. Basic shared platform dependend adaption (vm_version etc.). Reviewed-by: kvn, dholmes, stefank
This commit is contained in:
parent
a72b868ac2
commit
fac7ee02c5
51 changed files with 182 additions and 22 deletions
|
@ -177,6 +177,7 @@ const char* Abstract_VM_Version::jre_release_version() {
|
|||
#define OS LINUX_ONLY("linux") \
|
||||
WINDOWS_ONLY("windows") \
|
||||
SOLARIS_ONLY("solaris") \
|
||||
AIX_ONLY("aix") \
|
||||
BSD_ONLY("bsd")
|
||||
|
||||
#ifdef ZERO
|
||||
|
@ -237,6 +238,9 @@ const char* Abstract_VM_Version::internal_vm_info_string() {
|
|||
#endif
|
||||
#elif defined(__GNUC__)
|
||||
#define HOTSPOT_BUILD_COMPILER "gcc " __VERSION__
|
||||
#elif defined(__IBMCPP__)
|
||||
#define HOTSPOT_BUILD_COMPILER "xlC " XSTR(__IBMCPP__)
|
||||
|
||||
#else
|
||||
#define HOTSPOT_BUILD_COMPILER "unknown compiler"
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue