mirror of
https://github.com/mpv-player/mpv
synced 2025-02-28 19:30:44 +00:00
Compile codec-cfg binary with -O, avoids problems due to compilers
not being well tested with optimizations disabled (e.g. ICC 10.1.008 generates a non-existing "rorw $8, %st(7)" instruction). git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26090 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
6063301513
commit
f8fe49b504
2
Makefile
2
Makefile
@ -230,7 +230,7 @@ mencoder$(EXESUF): $(MENCODER_DEPS)
|
||||
$(CC) -o $@ $^ $(LDFLAGS_MENCODER)
|
||||
|
||||
codec-cfg$(EXESUF): codec-cfg.c codec-cfg.h help_mp.h
|
||||
$(HOST_CC) -I. -DCODECS2HTML $< -o $@
|
||||
$(HOST_CC) -O -I. -DCODECS2HTML $< -o $@
|
||||
|
||||
codecs.conf.h: codec-cfg$(EXESUF) etc/codecs.conf
|
||||
./codec-cfg$(EXESUF) ./etc/codecs.conf > $@
|
||||
|
Loading…
Reference in New Issue
Block a user