You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-04 22:03:09 +02:00
configure: fix passing Objective-C flags
Passing Objective-C flags from configure to the Makefiles was broken, as configure incorrectly used the OBJCCFLAGS instead of OBJCFLAGS variable which was then later overwritten in the common.mak: OBJCCFLAGS = $(CPPFLAGS) $(CFLAGS) $(OBJCFLAGS) The fix for this is simple, analogous to how it is handled for CFLAGS, use OBJCFLAGS here so that the flags are properly included in the aforementioned OBJCCFLAGS definition. Signed-off-by: Zhao Zhili <zhilizhao@tencent.com>
This commit is contained in:
committed by
Zhao Zhili
parent
3ad00ebf2c
commit
163e5fd84d
2
configure
vendored
2
configure
vendored
@ -8141,7 +8141,7 @@ LN_S=$ln_s
|
|||||||
CPPFLAGS=$CPPFLAGS
|
CPPFLAGS=$CPPFLAGS
|
||||||
CFLAGS=$CFLAGS
|
CFLAGS=$CFLAGS
|
||||||
CXXFLAGS=$CXXFLAGS
|
CXXFLAGS=$CXXFLAGS
|
||||||
OBJCCFLAGS=$OBJCFLAGS
|
OBJCFLAGS=$OBJCFLAGS
|
||||||
ASFLAGS=$ASFLAGS
|
ASFLAGS=$ASFLAGS
|
||||||
NVCCFLAGS=$nvccflags
|
NVCCFLAGS=$nvccflags
|
||||||
AS_C=$AS_C
|
AS_C=$AS_C
|
||||||
|
Reference in New Issue
Block a user