aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/libxml/config.h
diff options
context:
space:
mode:
authorthegeorg <thegeorg@yandex-team.ru>2022-04-07 16:10:54 +0300
committerthegeorg <thegeorg@yandex-team.ru>2022-04-07 16:10:54 +0300
commit0d7f718eeab0bd4c8e0a8322d63a03f3b4359b9c (patch)
treef2868fa05ec1351297557223f55e5d77722baaa1 /contrib/libs/libxml/config.h
parent7d9cd4fc964b137f81d1e83a1e3542a1457ceb87 (diff)
downloadydb-0d7f718eeab0bd4c8e0a8322d63a03f3b4359b9c.tar.gz
Fix reimport after yamaker changes
`_M_ARM64` [is predefined](https://docs.microsoft.com/en-us/cpp/preprocessor/predefined-macros) by MSVC when compiling for ARMv8. ref:f20027d7ea0f18d0a3d1e2510a8eafe47809eeb6
Diffstat (limited to 'contrib/libs/libxml/config.h')
-rw-r--r--contrib/libs/libxml/config.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/libs/libxml/config.h b/contrib/libs/libxml/config.h
index cdeb8f75da..33a3b10f20 100644
--- a/contrib/libs/libxml/config.h
+++ b/contrib/libs/libxml/config.h
@@ -10,6 +10,6 @@
# include "config-armv7a.h"
#endif
-#if defined(__aarch64__)
+#if defined(__aarch64__) || defined(_M_ARM64)
# include "config-armv8a.h"
#endif