From 7919c6110ddec7b73b868584eb588cdab366b7db Mon Sep 17 00:00:00 2001 From: Luke Street Date: Sun, 17 May 2026 22:25:12 -0400 Subject: [PATCH] time.h: Include immintrin.h on x86_64 macOS --- include/dusk/time.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/dusk/time.h b/include/dusk/time.h index 48dbe4c9ed..ead946188b 100644 --- a/include/dusk/time.h +++ b/include/dusk/time.h @@ -19,6 +19,9 @@ #endif #ifdef __APPLE__ #include +#if defined(__x86_64__) || defined(__i386__) +#include +#endif #endif class Limiter {