I updated my toolchain to gcc 8.3 from arm developer website gcc-arm-8.3-2019.03-x86_64-arm-linux-gnueabihf.tar.xz
I can build the program and run it on the target, it works fine. But when i try to remote debug over eclipse I get the following error:
0xb6fd6a40 in _dl_start_user () from /home/user/gcc-arm-8.3-2019.03-x86_64-arm-linux-gnueabihf/arm-linux-gnueabihf/libc/lib/ld-linux-armhf.so.3
Program received signal SIGINT, Interrupt.
0xb6fe62a2 in _dl_fini () at dl-fini.c:87
87 dl-fini.c: No such file or directory.
Where can I find the source files and where should they be placed?
I noticed that earlier arm toolchain has a separate sysroot package but 8.3 is missing it.
"dl-fini.c" githuband you usually find it. - KamilCuk