(Please do not scold me, this is my first question here.)
I'm using Yocto 2.3.1 under Ubuntu. I create image for Raspebrry Pi 3 without any problem. I install Eclipse and yocto-plugin for Eclipse. I create HelloWorld Autotools project and debug it on target hardware - no problems. But, when I try to add some library, besides standart stdlib.h and stdio.h, I get "undefined reference to 'name'" Where I can add a library to Eclipse with Yocto Plugin? I can't find this place!
Source: %)
#include <stdlib.h>
#include <stdio.h>
#include <dbm.h>
int main(void){
char fn = "someFile";
dbminit(&fn);
return 0;
}
Toolchain Root Location: /opt/poky/2.3.1/
Sysroot Location: /opt/poky/2.3.1/sysroots/cortexa7hf-neon-vfpv4-poky-linux-gnueabi
(I'm using SDK for my image)
Thanks in advance.
UPD: