mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-24 04:54:40 +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
|
@ -41,6 +41,10 @@
|
|||
#ifdef TARGET_OS_FAMILY_windows
|
||||
# include "jvm_windows.h"
|
||||
#endif
|
||||
#ifdef TARGET_OS_FAMILY_aix
|
||||
# include "jvm_aix.h"
|
||||
# include <setjmp.h>
|
||||
#endif
|
||||
#ifdef TARGET_OS_FAMILY_bsd
|
||||
# include "jvm_bsd.h"
|
||||
# include <setjmp.h>
|
||||
|
@ -750,6 +754,10 @@ class os: AllStatic {
|
|||
#ifdef TARGET_OS_FAMILY_windows
|
||||
# include "os_windows.hpp"
|
||||
#endif
|
||||
#ifdef TARGET_OS_FAMILY_aix
|
||||
# include "os_aix.hpp"
|
||||
# include "os_posix.hpp"
|
||||
#endif
|
||||
#ifdef TARGET_OS_FAMILY_bsd
|
||||
# include "os_posix.hpp"
|
||||
# include "os_bsd.hpp"
|
||||
|
@ -778,6 +786,9 @@ class os: AllStatic {
|
|||
#ifdef TARGET_OS_ARCH_linux_ppc
|
||||
# include "os_linux_ppc.hpp"
|
||||
#endif
|
||||
#ifdef TARGET_OS_ARCH_aix_ppc
|
||||
# include "os_aix_ppc.hpp"
|
||||
#endif
|
||||
#ifdef TARGET_OS_ARCH_bsd_x86
|
||||
# include "os_bsd_x86.hpp"
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue