We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2aa1907 commit b944640Copy full SHA for b944640
closed/autoconf/custom-hook.m4
@@ -75,6 +75,11 @@ AC_DEFUN([OPENJ9_CONFIGURE_CMAKE],
75
# at this point with_cmake should either be no, or the name of the cmake command
76
if test "x$with_cmake" = xno ; then
77
OPENJ9_ENABLE_CMAKE=false
78
+
79
+ # Currently, mixedrefs mode is only available with CMake enabled
80
+ if test "x$OPENJ9_ENABLE_MIXED_REFERENCES" = xtrue ; then
81
+ AC_MSG_ERROR([--with-mixedrefs cannot be used if CMake is disabled])
82
+ fi
83
else
84
OPENJ9_ENABLE_CMAKE=true
85
if AS_EXECUTABLE_P(["$with_cmake"]) ; then
0 commit comments