[FFmpeg-devel] [PATCH 1/3] common.mak: Use CCFLAGS for assembly generation as well

Timothy Gu timothygu99 at gmail.com
Wed Dec 2 06:46:04 CET 2015


CCFLAGS is equivalent to CPPFLAGS + CFLAGS.
---
 common.mak | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/common.mak b/common.mak
index d611ef8..05836ba 100644
--- a/common.mak
+++ b/common.mak
@@ -63,7 +63,7 @@ COMPILE_HOSTC = $(call COMPILE,HOSTCC)
 	$(COMPILE_C)
 
 %.s: %.c
-	$(CC) $(CPPFLAGS) $(CFLAGS) -S -o $@ $<
+	$(CC) $(CCFLAGS) -S -o $@ $<
 
 %.o: %.S
 	$(COMPILE_S)
-- 
2.1.4



More information about the ffmpeg-devel mailing list