about summary refs log tree commit diff stats
path: root/src/librarian
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2024-04-29 11:23:35 +0200
committerptitSeb <sebastien.chev@gmail.com>2024-04-29 11:23:35 +0200
commitf256c48505690dfa39405156f626ca8762d8f1d5 (patch)
tree54446bbea1144aa8520b15df63a2ccffd706bfa9 /src/librarian
parent71c5447b8ad534f2507c0405a348d902e9374517 (diff)
downloadbox64-f256c48505690dfa39405156f626ca8762d8f1d5.tar.gz
box64-f256c48505690dfa39405156f626ca8762d8f1d5.zip
Fixed non-dynarec build by introducing BOX64_JVM to replace BOX64_DYNAREC_JVM
Diffstat (limited to 'src/librarian')
-rw-r--r--src/librarian/library.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librarian/library.c b/src/librarian/library.c
index 3466e017..127339af 100644
--- a/src/librarian/library.c
+++ b/src/librarian/library.c
@@ -339,7 +339,7 @@ static int loadEmulatedLib(const char* libname, library_t *lib, box64context_t*
             box64_dynarec_strongmem = 3;
         }
         #endif
-        if(libname && box64_dynarec_jvm && strstr(libname, "libjvm.so")) {
+        if(libname && box64_jvm && strstr(libname, "libjvm.so")) {
             #ifdef DYNAREC
             printf_dump(LOG_INFO, "libjvm detected, disable Dynarec BigBlock and enable Dynarec StrongMem, hide SSE 4.2\n");
             box64_dynarec_bigblock = 0;