aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/crashpad/fix-std-20.patch
diff options
context:
space:
mode:
authorEthan Morgan <ethan@gweithio.com>2026-02-14 16:44:06 +0000
committerEthan Morgan <ethan@gweithio.com>2026-02-14 16:44:06 +0000
commit54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch)
treed915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/crashpad/fix-std-20.patch
move to own git serverHEADmaster
Diffstat (limited to 'vcpkg/ports/crashpad/fix-std-20.patch')
-rw-r--r--vcpkg/ports/crashpad/fix-std-20.patch18
1 files changed, 18 insertions, 0 deletions
diff --git a/vcpkg/ports/crashpad/fix-std-20.patch b/vcpkg/ports/crashpad/fix-std-20.patch
new file mode 100644
index 0000000..45e2964
--- /dev/null
+++ b/vcpkg/ports/crashpad/fix-std-20.patch
@@ -0,0 +1,18 @@
+diff --git a/base/atomicops_internals_portable.h b/base/atomicops_internals_portable.h
+index 2486fb7..88e2d2d 100644
+--- a/base/atomicops_internals_portable.h
++++ b/base/atomicops_internals_portable.h
+@@ -51,13 +51,7 @@ static_assert(sizeof(*(AtomicLocation32) nullptr) == sizeof(Atomic32),
+ "incompatible 32-bit atomic layout");
+
+ inline void MemoryBarrier() {
+-#if defined(__GLIBCXX__)
+- // Work around libstdc++ bug 51038 where atomic_thread_fence was declared but
+- // not defined, leading to the linker complaining about undefined references.
+- __atomic_thread_fence(std::memory_order_seq_cst);
+-#else
+ std::atomic_thread_fence(std::memory_order_seq_cst);
+-#endif
+ }
+
+ inline Atomic32 NoBarrier_CompareAndSwap(volatile Atomic32* ptr,