diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2014-07-10 15:16:39 (GMT) |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2014-07-10 15:16:39 (GMT) |
commit | eaf400b7fdae4d51f3c7137fc959625e52a7f063 (patch) | |
tree | b0ad475ddbdd19da532cdebcd4f47b3c06f85264 | |
parent | a405f25389ad94a75ac7adf476fe35db32e475b4 (diff) | |
download | soup-transcoding-proxy-eaf400b7fdae4d51f3c7137fc959625e52a7f063.zip soup-transcoding-proxy-eaf400b7fdae4d51f3c7137fc959625e52a7f063.tar.gz |
Makefile: build debug mode by default for now
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,5 +1,6 @@ -DEBUG_CFLAGS := -O0 -ggdb -Wall -fsanitize=address -fno-omit-frame-pointer -CFLAGS := -O3 -march=native -Wall +DEBUG_CFLAGS := -O0 -ggdb -Wall -fsanitize=address -fno-omit-frame-pointer -DENCODE_DEBUG -DPLAY_DEBUG +CFLAGS := -O0 -ggdb -Wall -fno-omit-frame-pointer -DENCODE_DEBUG -DPLAY_DEBUG +#CFLAGS := -O3 -march=native -Wall PKGCONFIG := pkg-config LIBS := $(shell $(PKGCONFIG) --libs --cflags glib-2.0 gio-unix-2.0 libsoup-2.4 gstreamer-pbutils-1.0) -lrt |