From 0191e525bad9fc2870b3d0760bd1277b3694a81f Mon Sep 17 00:00:00 2001 From: David Gonzalez Martin Date: Fri, 17 Jan 2025 14:10:47 -0600 Subject: [PATCH] Fix safety --- bootstrap/std/base.h | 6 +++--- build.c | 11 ++++++++++- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/bootstrap/std/base.h b/bootstrap/std/base.h index 82208e1..43ed4e7 100644 --- a/bootstrap/std/base.h +++ b/bootstrap/std/base.h @@ -6,9 +6,7 @@ #define LINK_LIBC 1 -#ifdef NDEBUG -#define BB_DEBUG 0 -#else +#ifndef BB_DEBUG #define BB_DEBUG 1 #endif @@ -26,7 +24,9 @@ #include #include +#ifndef BB_SAFETY #define BB_SAFETY BB_DEBUG +#endif #define STRUCT_FORWARD_DECL(S) typedef struct S S #define STRUCT(S) STRUCT_FORWARD_DECL(S); struct S diff --git a/build.c b/build.c index a02021c..5516ffe 100644 --- a/build.c +++ b/build.c @@ -547,6 +547,15 @@ fn void compile_program(Arena* arena, CompileOptions options) add_arg(optimization_switches[c_compiler == C_COMPILER_MSVC][options.build_type]); } + switch (options.build_type) + { + case BUILD_TYPE_COUNT: unreachable(); + case BUILD_TYPE_DEBUG: + case BUILD_TYPE_RELEASE_SAFE: add_arg("-DBB_DEBUG=1"); add_arg("-D_DEBUG=1"); break; + case BUILD_TYPE_RELEASE_FAST: + case BUILD_TYPE_RELEASE_SMALL: add_arg("-DBB_DEBUG=0"); add_arg("-DNDEBUG=1"); break; + } + // Inmutable options switch (c_compiler) { @@ -757,7 +766,7 @@ int main(int argc, char* argv[], char** envp) .flags = { .colored_output = 1, .error_limit = BB_ERROR_LIMIT, - .debug = 1, + .debug = BB_CI, .time_trace = BB_TIMETRACE, }, };