about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorYang Liu <liuyang22@iscas.ac.cn>2024-11-27 17:38:46 +0800
committerGitHub <noreply@github.com>2024-11-27 10:38:46 +0100
commit1ee4959c050a3206322c7ead876a883d598f99f3 (patch)
treed1b04178dc14d5789ea5743395ee87e73e6a6bc3 /src
parentbc9086551bf73206a564d6ddcf2f6a0278d11457 (diff)
downloadbox64-1ee4959c050a3206322c7ead876a883d598f99f3.tar.gz
box64-1ee4959c050a3206322c7ead876a883d598f99f3.zip
[LA64_DYNAREC] Added nativeflags option support (#2084)
Diffstat (limited to 'src')
-rw-r--r--src/core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core.c b/src/core.c
index e5aab281..ebf88caf 100644
--- a/src/core.c
+++ b/src/core.c
@@ -522,7 +522,7 @@ HWCAP2_AFP
             return;
         }
 
-        if ((la64_lbt = (cpucfg2 >> 18) & 0b1))
+        if (la64_lbt = (((cpucfg2 >> 18) & 0b1) && box64_dynarec_nativeflags))
             printf_log(LOG_INFO, " LBT_X86");
         if ((la64_lam_bh = (cpucfg2 >> 27) & 0b1))
             printf_log(LOG_INFO, " LAM_BH");