zanmato1984 commented on code in PR #45210:
URL: https://github.com/apache/arrow/pull/45210#discussion_r1909720287
##########
cpp/CMakePresets.json:
##########
@@ -6,6 +6,30 @@
"patch": 0
},
"configurePresets": [
+ {
+ "name": "_allocator-none",
+ "hidden": true,
+ "cacheVariables": {
+ "ARROW_JEMALLOC": "OFF",
+ "ARROW_MIMALLOC": "OFF"
+ }
+ },
+ {
+ "name": "_allocator-jemalloc",
+ "hidden": true,
+ "cacheVariables": {
+ "ARROW_JEMALLOC": "ON",
+ "ARROW_MIMALLOC": "OFF"
Review Comment:
Ahh, I see.
However I think we are expecting these allocator presets to enforce the
allocator selection. That is, `_allocator_X` should mean "only enable allocator
X, nothing else".
So for intentionally enabling both allocators, we can have another
`_allocator_all` maybe?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]