From 51095c0c0cb4c0fe12f41246b3c3ea0af6c58d56 Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Sat, 30 Aug 2025 21:03:43 +0100 Subject: [PATCH] qcommon: Assume that unknown architectures don't have a JIT for QVMs We need specific code for any architecture that does have a JIT, so we can safely assume that any other architecture does not. Signed-off-by: Simon McVittie --- code/qcommon/q_platform.h | 1 + 1 file changed, 1 insertion(+) diff --git a/code/qcommon/q_platform.h b/code/qcommon/q_platform.h index ec203f57..bd8fda31 100644 --- a/code/qcommon/q_platform.h +++ b/code/qcommon/q_platform.h @@ -346,6 +346,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA // ARCH_STRING is (mostly) only used for informational purposes, so we allow // it to be undefined so that more diverse architectures may be compiled #define ARCH_STRING "unknown" +#define NO_VM_COMPILED #endif #ifndef ID_INLINE