After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 782387 - gst-omx: fix linking issue when building with meson
gst-omx: fix linking issue when building with meson
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: gst-omx
git master
Other Linux
: Normal normal
: 1.12.1
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2017-05-09 14:28 UTC by Guillaume Desmottes
Modified: 2017-05-09 14:33 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
meson: add dep on GModule (910 bytes, patch)
2017-05-09 14:28 UTC, Guillaume Desmottes
committed Details | Review

Description Guillaume Desmottes 2017-05-09 14:28:36 UTC
build/subprojects/gst-omx/build/omx'  
omx/gstomx@sha/gstomx.c.o: In function `gst_omx_core_acquire':
/home/cassidy/dev/gst/master/gst-build/subprojects/gst-omx/build/../omx/gstomx.c:87: undefined reference to `g_module_open'
/home/cassidy/dev/gst/master/gst-build/subprojects/gst-omx/build/../omx/gstomx.c:105: undefined reference to `g_module_symbol'
/home/cassidy/dev/gst/master/gst-build/subprojects/gst-omx/build/../omx/gstomx.c:115: undefined reference to `g_module_open'
/home/cassidy/dev/gst/master/gst-build/subprojects/gst-omx/build/../omx/gstomx.c:119: undefined reference to `g_module_symbol'
/home/cassidy/dev/gst/master/gst-build/subprojects/gst-omx/build/../omx/gstomx.c:121: undefined reference to `g_module_symbol'
/home/cassidy/dev/gst/master/gst-build/subprojects/gst-omx/build/../omx/gstomx.c:124: undefined reference to `g_module_symbol'
/home/cassidy/dev/gst/master/gst-build/subprojects/gst-omx/build/../omx/gstomx.c:127: undefined reference to `g_module_symbol'
/home/cassidy/dev/gst/master/gst-build/subprojects/gst-omx/build/../omx/gstomx.c:130: undefined reference to `g_module_symbol'
/home/cassidy/dev/gst/master/gst-build/subprojects/gst-omx/build/../omx/gstomx.c:166: undefined reference to `g_module_close'
/home/cassidy/dev/gst/master/gst-build/subprojects/gst-omx/build/../omx/gstomx.c:164: undefined reference to `g_module_error'
/home/cassidy/dev/gst/master/gst-build/subprojects/gst-omx/build/../omx/gstomx.c:96: undefined reference to `g_module_open'
/home/cassidy/dev/gst/master/gst-build/subprojects/gst-omx/build/../omx/gstomx.c:159: undefined reference to `g_module_error'
collect2: error: ld returned 1 exit status
ninja: build stopped: subcommand failed.
Comment 1 Guillaume Desmottes 2017-05-09 14:28:53 UTC
Created attachment 351439 [details] [review]
meson: add dep on GModule

libgstomx uses the GModule API and so needs it in its dependencies list.
Comment 2 Sebastian Dröge (slomo) 2017-05-09 14:31:30 UTC
Attachment 351439 [details] pushed as e8590db - meson: add dep on GModule