Gst-plugin-rs recipe error on --export-dynamic-symbol
I was unable to install Gstreamer 1.24 gst-plugins-rs
in x86_64 Ubuntu 18 LTS laptop due to ld
not having --export-dynamic-symbol
option, and it is being called in the post install function as followed in gst-plugins-rs.recipe
. I think the option is only available in Android's ld.lld
but not in Linux's ld
?
shell.new_call(
' '.join([
ld,
"--relocatable",
"--export-dynamic-symbol=gst_plugin_*",
"-o",
str(prelinked_obj.absolute()),
"*.o",
]),
cmd_dir=tmp,
logfile=self.logfile,
)
This error doesn't exist in Gstreamer 1.22
.
Edited by Kaung SiThu