Source code
Revision control
Copy as Markdown
Other Tools
From 3ca959eec4cea0d504594a88d920197f6fc6ca1b Mon Sep 17 00:00:00 2001
From: Erich Gubler <erichdongubler@gmail.com>
Date: Thu, 19 Jan 2023 00:20:06 -0500
Subject: [PATCH] build(linux): disable `PoolAlloc` to work around `asan`
failures
We noticed this causing problems in [Firefox CI][failing-ci].
[failing-ci]: https://treeherder.mozilla.org/jobs?repo=autoland&author=egubler%40mozilla.com&selectedTaskRun=e6KdZgnNTCOE9weaOnTjVQ.0
---
BUILD.gn | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/BUILD.gn b/BUILD.gn
index 81d5cb4..d4e9a41 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -578,7 +578,7 @@ template("angle_common_lib") {
":includes",
]
public_configs += [ ":angle_common_config" ]
- if (angle_has_build && use_fuzzing_engine) {
+ if (angle_has_build) {
all_dependent_configs = [ ":angle_disable_pool_alloc" ]
}
--
2.43.0