shithub: openh264

Download patch

ref: 77bf17937e787822892a37eb64253c706b7876c9
parent: bbd3eb29fc7872113e57f53fd8c943c3df93278a
author: Martin Storsjö <martin@martin.st>
date: Tue Mar 25 05:43:28 EDT 2014

Use the right linker output parameters for codec_unittest.exe

This also includes the -nologo parameter to silence extra output
from the compiler/linker.

Also add a separating empty line between the codec_unittest rule
and the include for dependency rules.

--- a/Makefile
+++ b/Makefile
@@ -164,5 +164,6 @@
 BINARIES += codec_unittest$(EXEEXT)
 codec_unittest$(EXEEXT): $(DECODER_UNITTEST_OBJS) $(ENCODER_UNITTEST_OBJS) $(API_TEST_OBJS) $(CODEC_UNITTEST_DEPS)
 	$(QUIET)rm -f $@
-	$(QUIET_CXX)$(CXX) -o $@ $+ $(CODEC_UNITTEST_LDFLAGS) $(LDFLAGS)
+	$(QUIET_CXX)$(CXX) $(CXX_LINK_O) $+ $(CODEC_UNITTEST_LDFLAGS) $(LDFLAGS)
+
 -include $(OBJS:.$(OBJ)=.d)