Commit 97fc8929 authored by Sean McGovern's avatar Sean McGovern Committed by Rafaël Carré

ffmpeg: don't force Intel Core 2 optimizations if not building 64-bit on Solaris

Signed-off-by: default avatarRafaël Carré <funman@videolan.org>
parent c556711d
......@@ -136,7 +136,10 @@ FFMPEGCONF += --enable-pthreads
endif
ifdef HAVE_SOLARIS
FFMPEGCONF += --cpu=core2 --enable-pic
ifeq ($(ARCH),x86_64)
FFMPEGCONF += --cpu=core2
endif
FFMPEGCONF += --enable-pic
endif
# Build
......
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