From 61df9cf32ca70519de127bf0c7ab0ac809d94ee7 Mon Sep 17 00:00:00 2001 From: "Justin C. Miller" Date: Mon, 18 Feb 2019 23:26:19 -0800 Subject: [PATCH] Add -ggdb to tests build --- scripts/templates/exe.tests.j2 | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 scripts/templates/exe.tests.j2 diff --git a/scripts/templates/exe.tests.j2 b/scripts/templates/exe.tests.j2 new file mode 100644 index 0000000..2c197c8 --- /dev/null +++ b/scripts/templates/exe.tests.j2 @@ -0,0 +1,7 @@ +{% extends "exe.default.j2" %} +{% block variables %} +{{ super() }} + +ccflags = $ccflags -ggdb + +{% endblock %}