Browse Source

libx264: Fix build errors on x86 targets due to missing ASM features (yasm)

minor cleanup of CFLAGS, remove COPTS warnings
	yasm needs to be added to x86 toolchain
	(LEDE updated: c08651226f)

Signed-off-by: Daniel Golle daniel@makrotopia.org
Signed-off-by: Ted Hess <thess@kitschensync.net>
lilik-openwrt-22.03
Ted Hess 8 years ago
parent
commit
f628fa9f83
1 changed files with 7 additions and 2 deletions
  1. +7
    -2
      libs/libx264/Makefile

+ 7
- 2
libs/libx264/Makefile View File

@ -24,9 +24,14 @@ PKG_INSTALL:=1
include $(INCLUDE_DIR)/package.mk
TARGET_CFLAGS:=-Wno-maybe-uninitialized -Wshadow -Wall -std=gnu99 -fPIC -O3 -ffast-math -I.
TARGET_CFLAGS+=-std=gnu99 -fPIC -O3 -ffast-math -I.
MAKE_FLAGS+= LD="$(TARGET_CC) -o"
ifneq ($(CONFIG_TARGET_x86),)
CONFIGURE_VARS+= AS=yasm
MAKE_FLAGS+= AS=yasm
endif
CONFIGURE_ARGS += \
--enable-shared \
--enable-pic \
@ -40,7 +45,7 @@ define Package/libx264
SECTION:=libs
CATEGORY:=Libraries
TITLE:=H264/AVC free codec library.
DEPENDS:=@BUILD_PATENTED
DEPENDS:=@BUILD_PATENTED @!TARGET_x86||YASM
URL:=http://www.videolan.org/developers/x264.html
endef


Loading…
Cancel
Save