Fix safety

This commit is contained in:
David Gonzalez Martin 2025-01-17 14:10:47 -06:00 committed by David
parent 6ac8a954b6
commit 0191e525ba
2 changed files with 13 additions and 4 deletions

View File

@ -6,9 +6,7 @@
#define LINK_LIBC 1 #define LINK_LIBC 1
#ifdef NDEBUG #ifndef BB_DEBUG
#define BB_DEBUG 0
#else
#define BB_DEBUG 1 #define BB_DEBUG 1
#endif #endif
@ -26,7 +24,9 @@
#include <stddef.h> #include <stddef.h>
#include <stdarg.h> #include <stdarg.h>
#ifndef BB_SAFETY
#define BB_SAFETY BB_DEBUG #define BB_SAFETY BB_DEBUG
#endif
#define STRUCT_FORWARD_DECL(S) typedef struct S S #define STRUCT_FORWARD_DECL(S) typedef struct S S
#define STRUCT(S) STRUCT_FORWARD_DECL(S); struct S #define STRUCT(S) STRUCT_FORWARD_DECL(S); struct S

11
build.c
View File

@ -547,6 +547,15 @@ fn void compile_program(Arena* arena, CompileOptions options)
add_arg(optimization_switches[c_compiler == C_COMPILER_MSVC][options.build_type]); 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 // Inmutable options
switch (c_compiler) switch (c_compiler)
{ {
@ -757,7 +766,7 @@ int main(int argc, char* argv[], char** envp)
.flags = { .flags = {
.colored_output = 1, .colored_output = 1,
.error_limit = BB_ERROR_LIMIT, .error_limit = BB_ERROR_LIMIT,
.debug = 1, .debug = BB_CI,
.time_trace = BB_TIMETRACE, .time_trace = BB_TIMETRACE,
}, },
}; };