# HG changeset patch # User reimar # Date 1203858269 0 # Node ID e2ee46838240504bf5ebffea8a49a75b3c80da7f # Parent 044b3c830459da067dbaae6aa771e7adcb27313f 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). diff -r 044b3c830459 -r e2ee46838240 Makefile --- a/Makefile Sun Feb 24 12:53:11 2008 +0000 +++ b/Makefile Sun Feb 24 13:04:29 2008 +0000 @@ -230,7 +230,7 @@ $(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 > $@