summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.txt4
-rw-r--r--zap/GNUmakefile2
2 files changed, 6 insertions, 0 deletions
diff --git a/CHANGELOG.txt b/CHANGELOG.txt
index 7f53ef4..7c5712d 100644
--- a/CHANGELOG.txt
+++ b/CHANGELOG.txt
@@ -1,3 +1,7 @@
+# 18.1
+
+* Enable debug symbols;
+
# 18.0
* Add integer-string format functions;
diff --git a/zap/GNUmakefile b/zap/GNUmakefile
index 8b38661..dc7bcf4 100644
--- a/zap/GNUmakefile
+++ b/zap/GNUmakefile
@@ -82,6 +82,7 @@ CFLAGS := \
-Wpedantic \
-ffreestanding \
-fshort-enums \
+ -g \
-nostdlib \
-pipe \
-std=$(stdc)
@@ -95,6 +96,7 @@ CXXFLAGS := \
-ffreestanding \
-fno-exceptions \
-fshort-enums \
+ -g \
-nostdlib \
-pipe \
-std=$(stdcxx)