Commit ef64f16e authored by Steve Lhomme's avatar Steve Lhomme Committed by Jean-Baptiste Kempf

Contribs: ffmpeg, do not assume i*86 if not WIN64 on Windows

Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 7448143e
......@@ -158,9 +158,11 @@ FFMPEGCONF += --enable-w32threads --enable-dxva2
ifdef HAVE_WIN64
FFMPEGCONF += --cpu=athlon64 --arch=x86_64
else # !WIN64
else
ifeq ($(ARCH),i386) # 32bits intel
FFMPEGCONF+= --cpu=i686 --arch=x86
endif
endif
else # !Windows
FFMPEGCONF += --enable-pthreads
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment