mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-25 05:45:11 +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
|
@ -254,6 +254,14 @@
|
|||
#define NOT_LINUX(code) code
|
||||
#endif
|
||||
|
||||
#ifdef AIX
|
||||
#define AIX_ONLY(code) code
|
||||
#define NOT_AIX(code)
|
||||
#else
|
||||
#define AIX_ONLY(code)
|
||||
#define NOT_AIX(code) code
|
||||
#endif
|
||||
|
||||
#ifdef SOLARIS
|
||||
#define SOLARIS_ONLY(code) code
|
||||
#define NOT_SOLARIS(code)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue