1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-08 14:02:16 +03:00

Disable intrinsic functions for Windows using Clang, due to reports of

linkage errors.  This causes a 0.6% performance reduction.  We will want to
revisit this change in the future.

FossilOrigin-Name: 7fd560c6d2ff470b755ad118287a0a8825b3009e
This commit is contained in:
drh
2017-01-17 00:10:58 +00:00
parent de48a3f98a
commit c711f53f30
3 changed files with 8 additions and 9 deletions

View File

@@ -111,7 +111,7 @@
#endif
/* What version of CLANG is being used. 0 means CLANG is not being used */
#ifdef __clang__
#if defined(__clang__) && !defined(_WIN32)
# define CLANG_VERSION \
(__clang_major__*1000000+__clang_minor__*1000+__clang_patchlevel__)
#else