Quando compilar,
O seguinte erro ocorreu
/Modules/posixmodule.c:2142:48: error: 'AT_SYMLINK_NOFOLLOW' undeclared (first use in this function)
follow_symlinks ? 0 : AT_SYMLINK_NOFOLLOW);
posixmodule.c linha 2142 como abaixo, os métodos fstatat foram usados aqui;
#ifdef HAVE_FSTATAT
if ((dir_fd != DEFAULT_DIR_FD) || !follow_symlinks)
result = fstatat(dir_fd, path->narrow, &st,
follow_symlinks ? 0 : AT_SYMLINK_NOFOLLOW);
else
#endif
Então esta correção deve ser aplicada para resolver esse problema.