On Wed, Jan 08, 2025 at 12:42:39PM +0100, Andre Vehreschild wrote: > Er, call me stupid, but what is the easiest way to apply your patch? 'git am' > on > the part from the date-line to the end stripping your greetings, always leads > to unrecognized patch format. Using `patch -p1` did not work either. What am I > not seeing?
If in the toplevel directory, then patch -p0 (but note it is on top of the https://gcc.gnu.org/pipermail/gcc-patches/2025-January/672901.html patch). If inside of gcc/ subdirectory, then -p1, if inside of gcc/fortran, then -p2. Jakub