aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorthegeorg <thegeorg@yandex-team.com>2022-12-10 02:03:12 +0300
committerthegeorg <thegeorg@yandex-team.com>2022-12-10 02:03:12 +0300
commit1bb7312173c0162299689aaecb798070864bd9b8 (patch)
tree7d1a8c0cd25b7aced749e8b1536f26f5d72e9aee
parent05b8ebb93b5f51e1ab87c8dd4cdddb7879a6b696 (diff)
downloadydb-1bb7312173c0162299689aaecb798070864bd9b8.tar.gz
Fix more platform dispatchers for osx-arm64
-rw-r--r--contrib/libs/jemalloc/include/jemalloc/internal/jemalloc_internal_defs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/libs/jemalloc/include/jemalloc/internal/jemalloc_internal_defs.h b/contrib/libs/jemalloc/include/jemalloc/internal/jemalloc_internal_defs.h
index fda39748b8..7c71f6204d 100644
--- a/contrib/libs/jemalloc/include/jemalloc/internal/jemalloc_internal_defs.h
+++ b/contrib/libs/jemalloc/include/jemalloc/internal/jemalloc_internal_defs.h
@@ -1,6 +1,6 @@
#pragma once
-#if defined(__APPLE__) && defined(__arm64__)
+#if defined(__APPLE__) && (defined(__aarch64__) || defined(_M_ARM64))
# include "jemalloc_internal_defs-osx-arm64.h"
#elif defined(__APPLE__)
# include "jemalloc_internal_defs-osx.h"