+ printf("\e[0Ksection_start:%lld:commit_%s\r\e[0KBuilding commit %s\n", + (long long int)time(NULL), commit_dir, commit_dir);
This warns about %lld here, unless I remove -D__USE_MINGW_ANSI_STDIO=0 from CROSS_CFLAGS. I didn't look much into why that doesn't happen on the CI, but I think we could just use uint64_t and either PRId64 or %I64d instead?