1
0
Fork 0
mirror of https://github.com/klzgrad/naiveproxy.git synced 2025-04-18 08:31:01 +00:00

musl: allocator: Disable ifunc on aarch64

This commit is contained in:
klzgrad 2024-06-10 16:45:07 +08:00
parent e7d853382e
commit 63dad91508

View file

@ -10,7 +10,9 @@
#include "partition_alloc/build_config.h"
#include "partition_alloc/buildflags.h"
#if PA_BUILDFLAG(IS_ANDROID) || PA_BUILDFLAG(IS_LINUX)
#if defined(__MUSL__)
// Musl does not support ifunc.
#elif PA_BUILDFLAG(IS_ANDROID) || PA_BUILDFLAG(IS_LINUX)
#define HAS_HW_CAPS
#endif