libs/libx264: Update to snapshot 20181006
Update libx264 to snapshot 20181006 Add 464fp to ASM blacklist (doesn't support AltiVec instructions) Enable LTO by default for platforms that uses ASM Remove a few whitespaces (cosmetic) Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
This commit is contained in:
parent
c2cc90a3dd
commit
e6599366e5
1 changed files with 7 additions and 6 deletions
|
@ -8,13 +8,13 @@
|
||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=x264
|
PKG_NAME:=x264
|
||||||
PKG_VERSION:=snapshot-20180401-2245
|
PKG_VERSION:=snapshot-20181006-2245
|
||||||
PKG_RELEASE:=2
|
PKG_RELEASE:=1
|
||||||
|
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
||||||
PKG_SOURCE_URL:=https://download.videolan.org/x264/snapshots/
|
PKG_SOURCE_URL:=https://download.videolan.org/x264/snapshots/
|
||||||
PKG_MAINTAINER:=Adrian Panella <ianchi74@outlook.com>
|
PKG_MAINTAINER:=Adrian Panella <ianchi74@outlook.com>
|
||||||
PKG_HASH:=657a915497a5b0ffed3598988657395358cf4dc961db14aebd918b7ffb7c5364
|
PKG_HASH:=eae60e969958c0759554d5e338dea9b91f1f1fe85d9523c152c2259d8546f469
|
||||||
|
|
||||||
PKG_LICENSE:=GPL-2.0
|
PKG_LICENSE:=GPL-2.0
|
||||||
PKG_LICENSE_FILES:=COPYING
|
PKG_LICENSE_FILES:=COPYING
|
||||||
|
@ -30,13 +30,14 @@ MAKE_FLAGS+= LD="$(TARGET_CC) -o"
|
||||||
# ARM ASM depends on ARM1156 or later, blacklist earlier or incompatible cores
|
# ARM ASM depends on ARM1156 or later, blacklist earlier or incompatible cores
|
||||||
# AMD Geode LX and i486 do not have SSE
|
# AMD Geode LX and i486 do not have SSE
|
||||||
CPU_ASM_BLACKLIST:=geode i486 arm920t arm926ej-s arm1136j-s arm1176jzf-s fa526 mpcore xscale \
|
CPU_ASM_BLACKLIST:=geode i486 arm920t arm926ej-s arm1136j-s arm1176jzf-s fa526 mpcore xscale \
|
||||||
mips32 24kc 34kc 74kc octeon mips64
|
464fp mips32 24kc 34kc 74kc octeon mips64
|
||||||
|
|
||||||
ifneq ($(CONFIG_SOFT_FLOAT)$(findstring $(call qstrip,$(CONFIG_CPU_TYPE)),$(CPU_ASM_BLACKLIST)),)
|
ifneq ($(CONFIG_SOFT_FLOAT)$(findstring $(call qstrip,$(CONFIG_CPU_TYPE)),$(CPU_ASM_BLACKLIST)),)
|
||||||
CONFIGURE_VARS+= AS=
|
CONFIGURE_VARS+= AS=
|
||||||
MAKE_FLAGS+= AS=
|
MAKE_FLAGS+= AS=
|
||||||
CONFIGURE_ARGS += --disable-asm
|
CONFIGURE_ARGS += --disable-asm
|
||||||
else
|
else
|
||||||
|
CONFIGURE_ARGS += --enable-lto
|
||||||
ifneq ($(CONFIG_TARGET_x86),)
|
ifneq ($(CONFIG_TARGET_x86),)
|
||||||
ifeq ($(CONFIG_NASM),y)
|
ifeq ($(CONFIG_NASM),y)
|
||||||
CONFIGURE_VARS+= AS=nasm
|
CONFIGURE_VARS+= AS=nasm
|
||||||
|
|
Loading…
Reference in a new issue