From 96404e993984065f9104d724672bcdcafd7f356f Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Mon, 30 Mar 2026 16:00:32 +0200 Subject: [PATCH] Exclude memory check for Apple Silicon Not yet working as getAvailableMemorySize delivers wrong values. --- src/frontend/outitf.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/frontend/outitf.c b/src/frontend/outitf.c index a9e47df3c..56883b04d 100644 --- a/src/frontend/outitf.c +++ b/src/frontend/outitf.c @@ -556,6 +556,7 @@ OUTpD_memory(runDesc *run, IFvalue *refValue, IFvalue *valuePtr) { int i, n = run->numData; +#ifndef __APPLE__ if (!cp_getvar("no_mem_check", CP_BOOL, NULL, 0)) { /* Estimate the required memory */ size_t memrequ = (size_t)n * vlength2delta(0) * sizeof(double); @@ -569,6 +570,7 @@ OUTpD_memory(runDesc *run, IFvalue *refValue, IFvalue *valuePtr) controlled_exit(1); } } +#endif for (i = 0; i < n; i++) {