From 936433a5deb6ccc8f8476096f2c2b8dc72c33388 Mon Sep 17 00:00:00 2001 From: zorz Date: Thu, 2 Apr 2026 01:11:55 +0300 Subject: chromium musl --- chromium/patches/sanitizer-no-death-callback.patch | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 chromium/patches/sanitizer-no-death-callback.patch (limited to 'chromium/patches/sanitizer-no-death-callback.patch') diff --git a/chromium/patches/sanitizer-no-death-callback.patch b/chromium/patches/sanitizer-no-death-callback.patch new file mode 100644 index 0000000..b2c1e1f --- /dev/null +++ b/chromium/patches/sanitizer-no-death-callback.patch @@ -0,0 +1,22 @@ +undefined symbol in our build + +--- a/v8/src/sandbox/testing.cc ++++ b/v8/src/sandbox/testing.cc +@@ -578,7 +578,7 @@ void UninstallCrashFilter() { + // We should also uninstall the sanitizer death callback as our crash filter + // may hand a crash over to sanitizers, which should then not enter our crash + // filtering logic a second time. +-#ifdef V8_USE_ANY_SANITIZER ++#if 0 + __sanitizer_set_death_callback(nullptr); + #endif // V8_USE_ANY_SANITIZER + } +@@ -782,7 +782,7 @@ void InstallCrashFilter() { + } + CHECK(success); + +-#ifdef V8_USE_ANY_SANITIZER ++#if 0 + // We install sanitizer specific crash handlers. These can only check for + // in-sandbox crashes on certain configurations. + // -- cgit v1.2.3