Browse Source

Compile with -fno-omit-frame-pointer.

tags/v2.0.4
Andrew Belt 2 years ago
parent
commit
70382a63ac
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      compile.mk

+ 1
- 1
compile.mk View File

@@ -14,7 +14,7 @@ FLAGS += -MMD -MP
# Debugger symbols. These are removed with `strip`. # Debugger symbols. These are removed with `strip`.
FLAGS += -g FLAGS += -g
# Optimization # Optimization
FLAGS += -O3 -march=nehalem -funsafe-math-optimizations
FLAGS += -O3 -march=nehalem -funsafe-math-optimizations -fno-omit-frame-pointer
# Warnings # Warnings
FLAGS += -Wall -Wextra -Wno-unused-parameter FLAGS += -Wall -Wextra -Wno-unused-parameter
# C++ standard # C++ standard


Loading…
Cancel
Save