From 9d020c3ec555ed0635c9f6ce0a681567c8b78447 Mon Sep 17 00:00:00 2001 From: Calvin Rose Date: Sun, 22 Sep 2019 18:00:25 -0500 Subject: [PATCH] Update CHANGELOG.md --- CHANGELOG.md | 5 +++-- Makefile | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c3f0456f..891782c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,9 @@ All notable changes to this project will be documented in this file. ## Unreleased -- Add line, column style stacktraces if source is available. Otherwise, default - to (start:end) byte offsets. +- Replace (start:end) style stacktrace source position information with + line, column. This should be more readable for humans. Also, range information + can be recovered by re-parsing source. ## 1.3.1 - 2019-09-21 - Fix some linking issues when creating executables with native dependencies. diff --git a/Makefile b/Makefile index 7ced00a7..54c434a4 100644 --- a/Makefile +++ b/Makefile @@ -37,7 +37,7 @@ MANPATH?=$(PREFIX)/share/man/man1/ PKG_CONFIG_PATH?=$(PREFIX)/lib/pkgconfig DEBUGGER=gdb -CFLAGS=-std=c99 -Wall -Wextra -Isrc/include -Isrc/conf -fpic -O0 -g -fvisibility=hidden \ +CFLAGS=-std=c99 -Wall -Wextra -Isrc/include -Isrc/conf -fpic -O2 -fvisibility=hidden \ -DJANET_BUILD=$(JANET_BUILD) LDFLAGS=-rdynamic