sys/cdef.h not found #48
-
I'm building software emulation on vck machine for a newly created application, I import all source files, finish building software emulation(kernel). I get makefile contains error due to "sys/cdefs.h" not found when I am building configuration for system_hw_link. I've seen in xilinx's discussion thread that I can do echo CPATH="/usr/include/x86_64-linux-gnu" to solve it; in my case (export CPATH="/usr/lib/x86_64-linux-gnu") where the libc6 is located, however I am still getting the error. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi, |
Beta Was this translation helpful? Give feedback.
Hi,
I found cdefs.h was located in /usr/include/x86_64-linux-gnu/sys/cdefs.h.
Maybe you can try to set export CPATH="/usr/include/x86_64-linux-gnu", but I can not sure CPATH is the lib prefix in your…