[-cc: linux-kernel@xxxxxxxxxxxxxxx] Junio C Hamano wrote: > An early preview release Git v2.26.0-rc0 is now available for > testing at the usual places. It is comprised of 426 non-merge > commits since v2.25.0, contributed by 43 people, 7 of which are > new faces. I've built rc0 for Fedora and RHEL/CentOS across a decent variety of architectures without any issues. One thing of note, which isn't new in rc0 nor is it a Git issue: with gcc-10 on s390x, diff.c is miscompiled when built with '-O2 -march=zEC12 -mtune=z13' options. It's fixed in gcc's git, with thanks to Jakub Jelinek for the diagnosis, work-around, and patch. A work-around is 's/-mtune=z13/-mtune=zEC12/' for the compiler flags. Hopefully if anyone else runs into the issue, this will save some time. The gcc bug report is: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=93908 -- Todd