This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
examples/Makefile: disable -O2 optimizations
There is no much point in optimizing example code, and the -O2 flag is annoying when debugging.
tags/n2.0
Stefano Sabatini
12 years ago
parent
3aa57e1582
commit
c58d535b2f
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
doc/examples/Makefile
+ 1
- 1
doc/examples/Makefile
View File
@@ -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)
Write
Preview
Loading…
Cancel
Save