From 29556424770ab088b2958b249772cc773143d23d Mon Sep 17 00:00:00 2001 From: Charlie <66182434+asbott@users.noreply.github.com> Date: Sun, 7 Jul 2024 20:46:57 +0200 Subject: [PATCH] Dev mode --- build.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/build.c b/build.c index 11a646b..8406806 100644 --- a/build.c +++ b/build.c @@ -3,6 +3,16 @@ /// // Build config stuff +#define OOGABOOGA_DEV 1 + +#define RUN_TESTS 0 + +#define ENABLE_PROFILING 0 + +// ENABLE_SIMD Requires CPU to support at least SSE1 but I will be very surprised if you find a system today which doesn't +#define ENABLE_SIMD 0 + + #define INITIAL_PROGRAM_MEMORY_SIZE MB(5) typedef struct Context_Extra {