blob: b2c1e1fa0e3d96030c891e7207f8b58a6e252238 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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.
//
|