Merge pull request #8757 from neheb/gst1
gst1-libav: Add a hack to get it to build on mips64
This commit is contained in:
commit
b669636e60
1 changed files with 7 additions and 2 deletions
|
@ -142,8 +142,13 @@ LIBAV_CONFIGURE_DEMUXERS:=$(call FILTER_CONFIG,DEMUXER,demuxer,$(LIBAV_DEMUXERS)
|
|||
LIBAV_CONFIGURE_PARSERS:=$(call FILTER_CONFIG,PARSER,parser,$(LIBAV_PARSERS))
|
||||
LIBAV_CONFIGURE_PROTOCOLS:=$(call FILTER_CONFIG,PROTOCOL,protocol,$(LIBAV_PROTOCOLS))
|
||||
|
||||
# Strip off FPU notation
|
||||
REAL_CPU_TYPE:=$(firstword $(subst +, ,$(CONFIG_CPU_TYPE)))
|
||||
#hack to build on mips64
|
||||
ifeq ($(CONFIG_CPU_TYPE),octeonplus)
|
||||
REAL_CPU_TYPE:=octeon+
|
||||
else
|
||||
# Strip off FPU notation
|
||||
REAL_CPU_TYPE:=$(firstword $(subst +, ,$(CONFIG_CPU_TYPE)))
|
||||
endif
|
||||
|
||||
CONFIGURE_ARGS += \
|
||||
--disable-Bsymbolic \
|
||||
|
|
Loading…
Reference in a new issue