diff options
author | Brian Smith <brian@dbsoft.org> | 2022-06-09 18:08:04 -0500 |
---|---|---|
committer | Brian Smith <brian@dbsoft.org> | 2022-06-09 18:08:04 -0500 |
commit | 8199a0d551455314809de775164d592c5a4aad9d (patch) | |
tree | f131aaf5d09212b38a2a821cb0634431fb548075 /ipc | |
parent | 699611592449ce8ba768934b89b0b29855fe61de (diff) | |
download | uxp-8199a0d551455314809de775164d592c5a4aad9d.tar.gz |
Issue #1905 - Part 3f - Collection of fixes connecting ARM support to the Mac build.
Also update ARM XPT code to add Mac/Apple support.
Diffstat (limited to 'ipc')
-rw-r--r-- | ipc/chromium/src/base/atomicops.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipc/chromium/src/base/atomicops.h b/ipc/chromium/src/base/atomicops.h index 0883eb35af..66001578f9 100644 --- a/ipc/chromium/src/base/atomicops.h +++ b/ipc/chromium/src/base/atomicops.h @@ -135,7 +135,7 @@ Atomic64 Release_Load(volatile const Atomic64* ptr); // Include our platform specific implementation. #if defined(OS_WIN) && defined(ARCH_CPU_X86_FAMILY) #include "base/atomicops_internals_x86_msvc.h" -#elif defined(OS_MACOSX) && defined(ARCH_CPU_X86_FAMILY) +#elif defined(OS_MACOSX) && (defined(ARCH_CPU_X86_FAMILY) || defined(ARCH_CPU_ARM64)) #include "base/atomicops_internals_x86_macosx.h" #elif defined(COMPILER_GCC) && defined(ARCH_CPU_X86_FAMILY) #include "base/atomicops_internals_x86_gcc.h" |