force build params

This commit is contained in:
MX
2026-05-04 22:59:24 +03:00
parent daec03bd35
commit 09fc86415a
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -69,7 +69,7 @@ vars.AddVariables(
BoolVariable(
"DEBUG",
help="Enable debug build",
default=True,
default=False,
),
BoolVariable(
"LIB_DEBUG",
@@ -79,7 +79,7 @@ vars.AddVariables(
BoolVariable(
"COMPACT",
help="Optimize for size",
default=False,
default=True,
),
EnumVariable(
"TARGET_HW",
+1 -1
View File
@@ -28,7 +28,7 @@ else:
"NDEBUG",
],
CCFLAGS=[
"-Og",
"-Os",
],
)