您的位置:首页 > 产品设计 > UI/UE

How to build openmcu-ru on ubuntu

2015-12-06 00:01 686 查看
1. install tools

sudo apt-get install libtool autoconf flex bison automake pkg-config 

2.yasm-1.3.0

sed -i 's#) ytasm.*#)#' Makefile.in &&

./configure --prefix=/opt/openmcu &&

make

make instal

3.ffmpeg-2.8.3 

gedit ~/.basnrc

#add /opt/openmcu/bin to PATH env.

export PATH=$PATH:/opt/openmcu/bin

./configure --prefix=/opt/openmcu --enable-shared

make

make instal

4.x264-snapshot-20151204-2245

./configure --prefix=/opt/openmcu --enable-shared

make

make install

5.libvpx-1.5.0

./configure --prefix=/opt/openmcu

make

make install

6.openmcu-master ver4.01

./autogen.sh

./configure -prefix=/opt/openmcu --disable-openssl

configure: error: avcodec headers not found! Install FFmpeg or Libav.

Solultion: modify the configure file

PRODUCT=OpenMCU-ru  ==> PRODUCT=

PROG=openmcu-ru     ==> PROG=

make

/usr/bin/ld: cannot open output file ./obj/: Is a directory

collect2: error: ld returned 1 exit status

make[1]: *** [all] Error 1

Solution:

Modify the sub Makefile: openmcu-ru/Makefile

PROG=    ==> PROG=openmcu-ru 

make install

7. test
sudo ./openmcu-ru/obj/openmcu-ru -d &
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  OpenMCU