Build when HIGH_PERFORMANCE is true

This commit is contained in:
Ian Craggs 2026-07-18 15:09:42 +01:00
parent 72db3db996
commit 8c1d4cd15e
No known key found for this signature in database
GPG Key ID: A7AE1A8F2CCAB186
1 changed files with 2 additions and 0 deletions

View File

@ -584,7 +584,9 @@ int main(int argc, char** argv)
* alone isn't enough: Heap_initialize() is normally only called lazily from
* MQTTAsync_createWithOptions, so it's called explicitly here instead. */
MQTTAsync_global_init(NULL);
#if !defined(HIGH_PERFORMANCE)
Heap_initialize();
#endif
test_base64();
test_tree();