Bug 301933
| Summary: | [libpas] Fix build by properly guarding BENABLE(LIBPAS) | ||
|---|---|---|---|
| Product: | WebKit | Reporter: | Marcus Plutowski <marcus_plutowski> |
| Component: | bmalloc | Assignee: | Nobody <webkit-unassigned> |
| Status: | RESOLVED FIXED | ||
| Severity: | Normal | CC: | ggaren, webkit-bug-importer |
| Priority: | P2 | Keywords: | InRadar |
| Version: | WebKit Nightly Build | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
Marcus Plutowski
rdar://164009557
In pas_mte_config.h, currently we do:
`#if defined(PAS_BMALLOC) && BENABLE(LIBPAS)`
but we should actually do
```
#if defined(PAS_BMALLOC)
#if BENABLE(LIBPAS)
```
so that the BENABLE(LIBPAS) is only evaluated if we have bmalloc in the build.
This is currently breaking libpas tests.
| Attachments | ||
|---|---|---|
| Add attachment proposed patch, testcase, etc. |
Marcus Plutowski
Pull request: https://github.com/WebKit/WebKit/pull/53397
EWS
Committed 302545@main (eb706fcd89ff): <https://commits.webkit.org/302545@main>
Reviewed commits have been landed. Closing PR #53397 and removing active labels.