aboutsummaryrefslogtreecommitdiffstats
path: root/contrib
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
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')
-rw-r--r--contrib/libs/curl/lib/curl_config.h2
-rw-r--r--contrib/libs/libxml/config.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/contrib/libs/curl/lib/curl_config.h b/contrib/libs/curl/lib/curl_config.h
index f6dc46ab83..78b6b4c0bb 100644
--- a/contrib/libs/curl/lib/curl_config.h
+++ b/contrib/libs/curl/lib/curl_config.h
@@ -26,7 +26,7 @@
# include "curl_config-x32.h"
#endif
-#if defined(__x86_64__) || defined(_M_X64) || defined(__aarch64__) || defined(__powerpc64__)
+#if defined(__x86_64__) || defined(_M_X64) || defined(__aarch64__) || defined(_M_ARM64) || defined(__powerpc64__)
# include "curl_config-x64.h"
#endif
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