This commit is contained in:
Chris Hegarty 2016-03-22 17:02:40 +00:00
commit c56035afa6
2 changed files with 7 additions and 2 deletions

View File

@ -83,8 +83,9 @@ RPM_LIST := \
libXdmcp libXdmcp-devel \
libXau libXau-devel \
libgcc \
elfutils elfutils-devel \
elfutils-libelf elfutils-libelf-devel
elfutils elfutils-libs elfutils-devel \
elfutils-libelf elfutils-libelf-devel \
zlib zlib-devel
ifeq ($(ARCH),x86_64)

View File

@ -465,4 +465,8 @@ public class WhiteBox {
public native boolean isShared(Object o);
public native boolean isSharedClass(Class<?> c);
public native boolean areSharedStringsIgnored();
// Compiler Directive
public native int addCompilerDirective(String compDirect);
public native void removeCompilerDirective(int count);
}