8198275: AIX build broken after latest whitebox.cpp changes

Reviewed-by: mdoerr
This commit is contained in:
Matthias Baesken 2018-02-16 11:33:13 +01:00
parent 9b23b4f128
commit e1f8cacc0b
2 changed files with 2 additions and 2 deletions

View File

@ -1914,7 +1914,7 @@ WB_END
// Elf decoder
WB_ENTRY(void, WB_DisableElfSectionCache(JNIEnv* env))
#if !defined(_WINDOWS) && !defined(__APPLE__)
#if !defined(_WINDOWS) && !defined(__APPLE__) && !defined(_AIX)
ElfFile::_do_not_cache_elf_section = true;
#endif
WB_END

View File

@ -25,7 +25,7 @@
#ifndef SHARE_VM_UTILITIES_ELF_FILE_HPP
#define SHARE_VM_UTILITIES_ELF_FILE_HPP
#if !defined(_WINDOWS) && !defined(__APPLE__)
#if !defined(_WINDOWS) && !defined(__APPLE__) && !defined(_AIX)
#if defined(__OpenBSD__)
#include <sys/exec_elf.h>