I am trying to compile code that I downloaded from this GitHub repository on Eclipse CDT 3.8.1 and using Ubuntu 16.04 and kernel version 4.13.0-041300-lowlatency (because this project works on Xenomai Kernel). I'm getting this error:
fatal error: asm/linkage.h: No such file or directory,
external location: /usr/src/linux-headers-4.13.0-041300-lowlatency/include/linux/linkage.h C/C++ Problemand unresolved inclusion for the header files:
#include <asm/uaccess.h>
#include <asm/io.h>I searched for this error on various website, and I came to know that I have to make some changes to the Makefile and there is no asm directory in /usr/src/linux-headers-4.13.0-041300/include, instead there is a directory named asm-generic.
Can someone help me to resolve this error and the unresolved inclusions?
Reset to default