From 3579496945c69a7a0f2b7b8705f804d26e16da3b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9B=D0=B5=D0=BE=D0=BD=D0=B8=D0=B4=20=D0=AE=D1=80=D1=8C?= =?UTF-8?q?=D0=B5=D0=B2=20=28Leonid=20Yuriev=29?= Date: Thu, 6 Oct 2022 20:50:49 +0300 Subject: [PATCH] =?UTF-8?q?mdbx:=20=D0=BE=D1=82=D0=BA=D0=BB=D1=8E=D1=87?= =?UTF-8?q?=D0=B5=D0=BD=D0=B8=D0=B5=20`MDBX=5FHAVE=5FBUILTIN=5FCPU=5FSUPPO?= =?UTF-8?q?RTS`=20=D0=B4=D0=BB=D1=8F=20e2k.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/options.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/options.h b/src/options.h index 1a28e619..c81529fd 100644 --- a/src/options.h +++ b/src/options.h @@ -200,6 +200,8 @@ /* Never use any modern features on Apple's or Google's OSes * since a lot of troubles with compatibility and/or performance */ #define MDBX_HAVE_BUILTIN_CPU_SUPPORTS 0 +#elif defined(__e2k__) +#define MDBX_HAVE_BUILTIN_CPU_SUPPORTS 0 #elif __has_builtin(__builtin_cpu_supports) || \ defined(__BUILTIN_CPU_SUPPORTS__) || \ (defined(__ia32__) && __GNUC_PREREQ(4, 8) && __GLIBC_PREREQ(2, 23))