From 24316ca0c4514e01421ecd0c99680126cad173f4 Mon Sep 17 00:00:00 2001 From: "Justin C. Miller" Date: Fri, 22 Feb 2019 19:15:55 -0800 Subject: [PATCH] Build native targets with debug symbols --- scripts/templates/target.native.j2 | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 scripts/templates/target.native.j2 diff --git a/scripts/templates/target.native.j2 b/scripts/templates/target.native.j2 new file mode 100644 index 0000000..a1adeca --- /dev/null +++ b/scripts/templates/target.native.j2 @@ -0,0 +1,8 @@ +{% extends "target.default.j2" %} + +{% block variables %} + +ccflags = $ccflags -g -ggdb + +{% endblock %} +# vim: et ts=4 sts=4 sw=4