From 699611592449ce8ba768934b89b0b29855fe61de Mon Sep 17 00:00:00 2001 From: Brian Smith Date: Thu, 9 Jun 2022 14:57:21 -0500 Subject: Issue #1905 - Part 3e - Fix NSPR build on ARM. The dynamic loader had been falling through to the ancient PowerPC code without __aarch64__ #ifdef --- nsprpub/pr/include/md/_darwin.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nsprpub') diff --git a/nsprpub/pr/include/md/_darwin.h b/nsprpub/pr/include/md/_darwin.h index 1d79d3d82d..c6340ce2d5 100644 --- a/nsprpub/pr/include/md/_darwin.h +++ b/nsprpub/pr/include/md/_darwin.h @@ -40,7 +40,7 @@ #undef HAVE_STACK_GROWING_UP #define HAVE_DLL -#if defined(__x86_64__) || TARGET_OS_IPHONE +#if defined(__x86_64__) || defined(__aarch64__) #define USE_DLFCN #else #define USE_MACH_DYLD -- cgit v1.2.3