[MPlayer-cvslog] r26090 - trunk/Makefile

reimar subversion at mplayerhq.hu
Sun Feb 24 14:04:29 CET 2008


Author: reimar
Date: Sun Feb 24 14:04:29 2008
New Revision: 26090

Log:
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).


Modified:
   trunk/Makefile

Modified: trunk/Makefile
==============================================================================
--- trunk/Makefile	(original)
+++ trunk/Makefile	Sun Feb 24 14:04:29 2008
@@ -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 > $@



More information about the MPlayer-cvslog mailing list