diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2016-09-25 23:31:14 +0200 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2016-09-25 23:31:14 +0200 |
commit | d33333d4f8f34b1fe5a9e3248003fe4fd05c4805 (patch) | |
tree | 0299af3ab7d9b955c3707440b6c3abdcdfde2777 | |
parent | a3ac6a21615cd227208bae02fc5f18b3eb295d5b (diff) | |
download | applause2-d33333d4f8f34b1fe5a9e3248003fe4fd05c4805.tar.gz |
build applause binary with debug information
it should have no runtime penalty and eases debugging core dumps
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,6 +1,6 @@ CC = gcc -CFLAGS = -std=c99 -Wall -O2 +CFLAGS = -std=c99 -Wall -O2 -g LUA_CFLAGS = $(shell pkg-config --cflags luajit) LUA_LDFLAGS = $(shell pkg-config --libs luajit) |