lua

A copy of the Lua development repository
Log | Files | Refs | README

commit 429761d7d29226dd0c220de9fdc7c28ea54d95c0
parent 915c29f8bd0d4b0435a4b51a6c7913f5e170d09e
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date:   Fri, 10 Jan 2025 15:13:34 -0300

New optimization option for testing

Using gcc's option '-Og' (instead of '-O0') for testing/debugging.

Diffstat:
Mmakefile | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/makefile b/makefile @@ -63,7 +63,7 @@ CWARNS= $(CWARNSCPP) $(CWARNSC) $(CWARNGCC) # ASAN_OPTIONS="detect_invalid_pointer_pairs=2". # -fsanitize=undefined # -fsanitize=pointer-subtract -fsanitize=address -fsanitize=pointer-compare -# TESTS= -DLUA_USER_H='"ltests.h"' -O0 -g +# TESTS= -DLUA_USER_H='"ltests.h"' -Og -g LOCAL = $(TESTS) $(CWARNS)