Re: Link a simple program and load into RTEMS with dlopen

2018-09-18 Thread Boldizsar . Palotas
imple program and load into RTEMS with dlopen On 18/09/2018 01:29, boldizsar.palo...@esa.int wrote: > Hi, Hi, and welcome. > I'm using RTEMS 4.11 and the builtin POSIX API functions to dynamically load a > program image into memory. The program image is loaded in RTEMS using t

Re: Link a simple program and load into RTEMS with dlopen

2018-09-17 Thread Chris Johns
On 18/09/2018 01:29, boldizsar.palo...@esa.int wrote: > Hi, Hi, and welcome. > I'm using RTEMS 4.11 and the builtin POSIX API functions to dynamically load a > program image into memory. The program image is loaded in RTEMS using the > following code: > void* handle = dlopen(prog_name, RTLD_NOW |

Link a simple program and load into RTEMS with dlopen

2018-09-17 Thread Boldizsar . Palotas
Hi, I'm using RTEMS 4.11 and the builtin POSIX API functions to dynamically load a program image into memory. The program image is loaded in RTEMS using the following code: void* handle = dlopen(prog_name, RTLD_NOW | RTLD_GLOBAL); if (!handle) printf("dlopen: %s\n", dlerror()); I'm using the