commit 961f446bb0aa232c887110c242f07debd1e20523 parent fc3c67bdd6e311b5c7fe287e7f3464be2f2fd059 Author: [email protected] <[email protected]> Date: Tue, 20 Oct 2020 16:27:23 +0100 ARM builds require Clang compiler Diffstat:
M | include/kfr/kfr.h | | | 4 | ++++ |
1 file changed, 4 insertions(+), 0 deletions(-)
diff --git a/include/kfr/kfr.h b/include/kfr/kfr.h @@ -81,3 +81,7 @@ constexpr inline const char version_full[] = KFR_VERSION_FULL; #if defined CMT_ARCH_ARM && !defined CMT_ARCH_NEON && !defined CMT_FORCE_GENERIC_CPU #error "ARM builds require NEON support. Add -march=native for native build or skip the check with CMT_FORCE_GENERIC_CPU=1" #endif + +#if defined CMT_ARCH_ARM && !defined CMT_COMPILER_CLANG && !defined CMT_FORCE_NON_CLANG +#error "ARM builds require Clang compiler. Disable checking with CMT_FORCE_NON_CLANG" +#endif