我正在尝试为主机mipsel-linux-uclibc编译Evas。我正在使用我公司的旧二进制工具链来做到这一点。它是在 2008 年左右编译的,我现在有点坚持。看起来此工具链在 stat.h 的 struct stat 中缺少以下字段:
unsigned long int st_mtimensec; /* Nsecs of last modification. */
我最接近的是:
__time_t st_mtime; /* Time of last modification. */
看起来这与uclibc有关。有没有简单的方法可以解决这个问题?