From 70382a63ac1ad97d72a1823ea60527a9ee1fd9ca Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Sat, 11 Dec 2021 22:09:01 -0500 Subject: [PATCH] Compile with -fno-omit-frame-pointer. --- compile.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compile.mk b/compile.mk index c7b45048..9580533c 100644 --- a/compile.mk +++ b/compile.mk @@ -14,7 +14,7 @@ FLAGS += -MMD -MP # Debugger symbols. These are removed with `strip`. FLAGS += -g # Optimization -FLAGS += -O3 -march=nehalem -funsafe-math-optimizations +FLAGS += -O3 -march=nehalem -funsafe-math-optimizations -fno-omit-frame-pointer # Warnings FLAGS += -Wall -Wextra -Wno-unused-parameter # C++ standard