projects
/
ffmpeg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
3aa57e1
)
examples/Makefile: disable -O2 optimizations
author
Stefano Sabatini
<stefasab@gmail.com>
Wed, 26 Jun 2013 14:13:58 +0000
(16:13 +0200)
committer
Stefano Sabatini
<stefasab@gmail.com>
Wed, 26 Jun 2013 21:21:39 +0000
(23:21 +0200)
There is no much point in optimizing example code, and the -O2 flag is
annoying when debugging.
doc/examples/Makefile
patch
|
blob
|
history
diff --git
a/doc/examples/Makefile
b/doc/examples/Makefile
index
c849daa
..
3a84de8
100644
(file)
--- a/
doc/examples/Makefile
+++ b/
doc/examples/Makefile
@@
-7,7
+7,7
@@
FFMPEG_LIBS= libavdevice \
libswscale \
libavutil \
-CFLAGS += -Wall -
O2 -
g
+CFLAGS += -Wall -g
CFLAGS := $(shell pkg-config --cflags $(FFMPEG_LIBS)) $(CFLAGS)
LDLIBS := $(shell pkg-config --libs $(FFMPEG_LIBS)) $(LDLIBS)