We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9006c0 commit 7b3ef7aCopy full SHA for 7b3ef7a
src/sqlite3mc.c
@@ -73,6 +73,18 @@ void sqlite3mc_shutdown(void);
73
#define SQLITE_API
74
#endif
75
76
+/*
77
+** We need to do the following check here BEFORE including <windows.h>,
78
+** because the header <arm_neon.h> is included from somewhere within
79
+** <windows.h>, and we need support for the new Neon intrinsics, if
80
+** AES hardware support is enabled.
81
+*/
82
+#if defined (_MSC_VER)
83
+#if defined _M_ARM
84
+#define _ARM_USE_NEW_NEON_INTRINSICS
85
+#endif
86
87
+
88
#include <windows.h>
89
90
/* SQLite functions only needed on Win32 */
0 commit comments