I make a yocto image for ConectCore 6UL with systemd (working and tested ok)
Also installed libsystemd-dev at my developing computer.
Added -lsystemd to the compiler and linker flags at Digi eclipse application.
At my project I have:
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <systemd/sd-daemon.h>
...
sd_notify(0, "WATCHDOG=1");
...
But the linker complains:
real-ld: cannot find -lsystemd
also tried with -llibsystemd with the same luck
Any help welcomed!