Skip to content

Commit

Permalink
Enable more warnings and coredump in Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
813gan committed Aug 29, 2024
1 parent fbd0d99 commit 6557130
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ endif
CLANGFORMAT := clang-format

HARDENING_FLAGS := -fstack-protector -fstack-clash-protection -fcf-protection \
-D_FORTIFY_SOURCE=2 -ftrapv
-D_FORTIFY_SOURCE=2 -ftrapv -Wformat=2 -Wjump-misses-init
OPTIMALISATION_FLAGS := -O2

UNAME_S := $(shell uname -s)
Expand Down Expand Up @@ -45,7 +45,7 @@ clean:
test: test_ert test_formatting

test_ert: all
${EMACS} -batch -l tests/prepare-tests.el -l ert -l tests/test.el \
ulimit -c unlimited; ${EMACS} -batch -l tests/prepare-tests.el -l ert -l tests/test.el \
-f ert-run-tests-batch-and-exit

# https://stackoverflow.com/questions/20112989/how-to-use-valgrind-with-python
Expand Down

0 comments on commit 6557130

Please sign in to comment.