about summary refs log tree commit diff stats
path: root/src/include
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2025-09-17 21:47:23 +0200
committerptitSeb <sebastien.chev@gmail.com>2025-09-17 21:47:23 +0200
commit0d355aaf01e0e76968a0b9ea7e4478e9b4228948 (patch)
treee1ab7ff08cbfa4f4ea8a2a8860ae2888cd7288c8 /src/include
parent220b1e6dad693d6a47ca18c618f0ae70daf91be8 (diff)
downloadbox64-0d355aaf01e0e76968a0b9ea7e4478e9b4228948.tar.gz
box64-0d355aaf01e0e76968a0b9ea7e4478e9b4228948.zip
[LA64] Do not expose AVX by default for now, there are still some issue to fix before
Diffstat (limited to 'src/include')
-rw-r--r--src/include/env.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/env.h b/src/include/env.h
index f11dcad9..398e1f03 100644
--- a/src/include/env.h
+++ b/src/include/env.h
@@ -130,7 +130,7 @@ extern char* ftrace_name;
     STRING(BOX64_DYNACACHE_FOLDER, dynacache_folder, 0)                       \
     INTEGER(BOX64_DYNACACHE_MIN, dynacache_min, 350, 0, 10240, 0)
 
-#if defined(ARM64) || defined(LA64)
+#if defined(ARM64)
 #define ENVSUPER2() \
     INTEGER(BOX64_AVX, avx, 2, 0, 2, 1)
 #else