Dynamic linker for child components | Genode 16.08 with Fiasco.OC

2019-07-30 Thread Fesl, Matthias
Hello everyone, I am struggling with starting a component as a child from another component. At runtime the following error appears: Error: attempt to start dynamic executable without dynamic linker When I am starting the child component directly from init, it works. Does anyone know w

Re: Dynamic linker for child components | Genode 16.08 with Fiasco.OC

2019-07-30 Thread Nobody III
Well, I think the error is rather self-explanatory, as long as you understand what the dynamic linker is. It's a component/library for loading executables that are dynamically linked, including (almost) all Genode components, and its filename is "ld.lib.so". The error means your code tried to start

Dynamic linker for child components | Genode 16.08 with Fiasco.OC

2019-07-30 Thread Fesl, Matthias
Hello everyone, I am struggling with starting a component as a child from another component. At runtime the following error appears: Error: attempt to start dynamic executable without dynamic linker When I am starting the child component directly from init, it works. Does anyone know where