# HG changeset patch # User Roland Schatz # Date 1432908957 -7200 # Node ID 250fbc03954a1bb13e8d677276510386706e2bda # Parent aeb8489242b6fc5ce17ebb1d7c6b34265e03e5b6 Add missing option processors. diff -r aeb8489242b6 -r 250fbc03954a make/defs.make --- a/make/defs.make Fri May 29 14:46:58 2015 +0200 +++ b/make/defs.make Fri May 29 16:15:57 2015 +0200 @@ -375,6 +375,11 @@ EXPORT_LIST += $(EXPORT_JRE_LIB_JVMCI_SERVICES_DIR)/com.oracle.graal.truffle.hotspot.nfi.RawNativeCallNodeFactory EXPORT_LIST += $(EXPORT_JRE_LIB_JVMCI_SERVICES_DIR)/com.oracle.graal.truffle.OptimizedCallTargetInstrumentationFactory +EXPORT_LIST += $(EXPORT_JRE_LIB_JVMCI_OPTIONS_DIR)/com.oracle.jvmci.hotspot.HotSpotConstantReflectionProvider +EXPORT_LIST += $(EXPORT_JRE_LIB_JVMCI_OPTIONS_DIR)/com.oracle.jvmci.hotspot.HotSpotJVMCIRuntime +EXPORT_LIST += $(EXPORT_JRE_LIB_JVMCI_OPTIONS_DIR)/com.oracle.jvmci.hotspot.HotSpotResolvedJavaFieldImpl +EXPORT_LIST += $(EXPORT_JRE_LIB_JVMCI_OPTIONS_DIR)/com.oracle.jvmci.hotspot.HotSpotResolvedJavaMethodImpl + EXPORT_LIST += $(EXPORT_JRE_LIB_JVMCI_OPTIONS_DIR)/com.oracle.graal.compiler.common.GraalOptions EXPORT_LIST += $(EXPORT_JRE_LIB_JVMCI_OPTIONS_DIR)/com.oracle.graal.compiler.GraalCompiler EXPORT_LIST += $(EXPORT_JRE_LIB_JVMCI_OPTIONS_DIR)/com.oracle.graal.compiler.GraalDebugConfig diff -r aeb8489242b6 -r 250fbc03954a mx/suite.py --- a/mx/suite.py Fri May 29 14:46:58 2015 +0200 +++ b/mx/suite.py Fri May 29 16:15:57 2015 +0200 @@ -184,6 +184,7 @@ ], "annotationProcessors" : [ "com.oracle.jvmci.hotspotvmconfig.processor", + "com.oracle.jvmci.options.processor", ], "checkstyle" : "com.oracle.graal.graph", "javaCompliance" : "1.8", @@ -452,6 +453,7 @@ "JUNIT", ], "checkstyle" : "com.oracle.graal.graph", + "annotationProcessors" : ["com.oracle.jvmci.options.processor"], "javaCompliance" : "1.8", "workingSets" : "Graal", },