Skip to content
Snippets Groups Projects
Commit 3d230a44 authored by Martin Storsjö's avatar Martin Storsjö Committed by Steve Lhomme
Browse files

contrib: libvpx: Pass --disable-runtime-cpu-detect for Windows/armv7 too

This is needed for the same reason as the existing similar case for
iOS/armv7.
parent 9e3e0edd
No related branches found
No related tags found
1 merge request!4847contrib: libvpx: Pass --disable-runtime-cpu-detect for Windows/armv7 too
Pipeline #432241 passed with warnings with stage
in 58 minutes and 3 seconds
......@@ -117,6 +117,10 @@ ifndef HAVE_WIN32
VPX_CONF += --enable-pic
else
VPX_CONF += --extra-cflags="-mstackrealign"
ifeq ($(ARCH),arm)
# As of libvpx 1.14.0 we have to explicitly disable runtime CPU detection for Windows armv7
VPX_CONF += --disable-runtime-cpu-detect
endif
endif
ifdef HAVE_MACOSX
VPX_CONF += --extra-cflags="$(CFLAGS) $(EXTRA_CFLAGS)"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment