diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2014-07-25 15:04:57 (GMT) |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2014-07-25 15:04:57 (GMT) |
commit | 9e9eb34d73873c4488d0fe69002dd53e463d62fc (patch) | |
tree | 977657eb67218e29f2c6d99008a92ad201df4421 | |
parent | 7f74b68be2d16e52bc233744f07022719b963235 (diff) | |
download | soup-transcoding-proxy-9e9eb34d73873c4488d0fe69002dd53e463d62fc.zip soup-transcoding-proxy-9e9eb34d73873c4488d0fe69002dd53e463d62fc.tar.gz |
Makefile: don't use -march=native, and use -O2
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,6 +1,6 @@ DEBUG_CFLAGS := -O0 -ggdb -Wall -fsanitize=address -fno-omit-frame-pointer -DENCODE_DEBUG -DPLAY_DEBUG -DHEADERS_DEBUG #CFLAGS := -O0 -ggdb -Wall -fno-omit-frame-pointer -DENCODE_DEBUG -CFLAGS := -O3 -march=native -Wall +CFLAGS := -O2 -Wall PKGCONFIG := pkg-config LIBS := $(shell $(PKGCONFIG) --libs --cflags glib-2.0 libsoup-2.4 gstreamer-pbutils-1.0 gstreamer-video-1.0 json-glib-1.0) -lrt |