mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-22 21:36:12 +03:00
allocator: Disable PartitionAlloc memory tagging on non-glibc
Memory tagging depends on ifunc which is glibc-specific.
This commit is contained in:
parent
685c74a2b6
commit
dbc3c9d81d
@ -155,7 +155,8 @@ static_assert(sizeof(void*) != 8, "");
|
|||||||
#define PA_CONFIG_HAS_MEMORY_TAGGING() \
|
#define PA_CONFIG_HAS_MEMORY_TAGGING() \
|
||||||
(defined(ARCH_CPU_ARM64) && defined(__clang__) && \
|
(defined(ARCH_CPU_ARM64) && defined(__clang__) && \
|
||||||
!defined(ADDRESS_SANITIZER) && \
|
!defined(ADDRESS_SANITIZER) && \
|
||||||
(BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_ANDROID)))
|
(BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_ANDROID))) && \
|
||||||
|
defined(LIBC_GLIBC)
|
||||||
|
|
||||||
#if PA_CONFIG(HAS_MEMORY_TAGGING)
|
#if PA_CONFIG(HAS_MEMORY_TAGGING)
|
||||||
static_assert(sizeof(void*) == 8);
|
static_assert(sizeof(void*) == 8);
|
||||||
|
Loading…
Reference in New Issue
Block a user