Fix compilation for 32-bit ARM.

This commit is contained in:
2021-10-05 04:18:11 +01:00
parent f98418c7c0
commit fe8e157f89
8 changed files with 55 additions and 10 deletions

View File

@@ -2,7 +2,7 @@
// Created by claunia on 29/9/21.
//
#if defined(__aarch64__) || defined(_M_ARM64) || defined(__arm__) || defined(_M_ARM)
#if(defined(__aarch64__) || defined(_M_ARM64) || defined(__arm__) || defined(_M_ARM)) && __ARM_ARCH >= 8
#include <arm_acle.h>