Hello,
I am trying to compile my code for ARM. I have already developed a pipeline to play video. But, It fails to compile for ARM. Previously I was using GLSDK 6.04 which had Gstreamerv0.10. But, now I use GLSDK 7.03 which has GStreamer v1.0. I need my code to be compiled for ARM.
I use, arm-linux-gnueabi-gcc My_Gst_app.c -o gstapppc `pkg-config --libs --cflags gstreamer-1.0 gstreamer-app-1.0` to comile.
But I get error, saying
Package gstreamer-1.0 was not found in the pkg-config search path.
Perhaps you should add the directory containing `gstreamer-1.0.pc'
to the PKG_CONFIG_PATH environment variable
No package 'gstreamer-1.0' found
Package gstreamer-app-1.0 was not found in the pkg-config search path.
Perhaps you should add the directory containing `gstreamer-app-1.0.pc'
to the PKG_CONFIG_PATH environment variable
No package 'gstreamer-app-1.0' found
My_Gst_app.c:2:20: fatal error: gst/gst.h: No such file or directory
compilation terminated.
I checked for the .so files in /usr/arm-linux-gnueabi/libs. But, I can find none of the files like "libgstapp-1.0.so, libgstbase-1.0.so, libgstreamer-1.0.so". Instead, I can find only 0.10's .so files.
I also tried to find the .so files for v1.0 in targetfs directory which got created when GLSDK was installed. And also searched on internet. But couldn't succeed.
Please help me in compiling the code for ARM.
Thanks in Advance!
Shylesh S