Atravessando o Gstreamer para ARM

1

Oi eu estava tentando compilar Gstreamer para a plataforma ARM. Estou enfrentando alguns problemas como segue eu configurei INSTALL_PATH instalado no INSTALL_PATH

./configure --prefix=$INSTALL_PATH CC=arm-poky-linux-gnueabi-gcc CXX=arm-poky-linux-gnueabi-g++ --host=arm-linux LDFLAGS=-L$INSTALL_PATH/lib CFLAGS=-I$INSTALL_PATH/include --build=i686-linux

in configuration process  
checking for GLIB... configure: 
configure: error: This package requires GLib >= 2.32.0 to compile.
    
por Ohmkarr .P 04.05.2015 / 15:49

1 resposta

0

Instale as bibliotecas de desenvolvimento ausentes:

sudo apt-get install libglib2.0-dev
    
por A.B. 04.05.2015 / 16:16