diff options
author | Rosen Penev <rosenp@gmail.com> | 2020-01-11 20:44:34 -0800 |
---|---|---|
committer | Petr Štetiar <ynezz@true.cz> | 2020-07-08 22:54:34 +0200 |
commit | 691bf54369fbccf9c27a14231a14dcdf07acaf36 (patch) | |
tree | d33d72cf058583907b37707171d9c478e2b1edd8 /include | |
parent | 3e992ea790f470d754eaba3e76608630f38055db (diff) | |
download | upstream-691bf54369fbccf9c27a14231a14dcdf07acaf36.tar.gz upstream-691bf54369fbccf9c27a14231a14dcdf07acaf36.tar.bz2 upstream-691bf54369fbccf9c27a14231a14dcdf07acaf36.zip |
target.mk: change i386 CPU type to pentium-mmx
f4f8f4a180366ee90fd8e153213db2cb746ca361 broke ffmpeg compilation with x86
The reason is that ffmpeg's x86 assembly requires at least MMX, which the
pentium CPU_TYPE was preventing.
Fixes ffmpeg compilation on x86_legacy and x86_geode.
Ref: https://github.com/openwrt/openwrt/pull/3061
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/target.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/target.mk b/include/target.mk index 64292138b7..aba477e83b 100644 --- a/include/target.mk +++ b/include/target.mk @@ -174,8 +174,8 @@ ifeq ($(DUMP),1) CPU_CFLAGS_octeonplus = -march=octeon+ -mabi=64 endif ifeq ($(ARCH),i386) - CPU_TYPE ?= pentium - CPU_CFLAGS_pentium = -march=pentium-mmx + CPU_TYPE ?= pentium-mmx + CPU_CFLAGS_pentium-mmx = -march=pentium-mmx CPU_CFLAGS_pentium4 = -march=pentium4 endif ifneq ($(findstring arm,$(ARCH)),) |