[PATCH] cobol: Use *.cc suffix for bison/flex generated C++ files

2025-03-11 Thread Jakub Jelinek
Hi! In GCC 12 we've switched to using *.cc suffixes for C++ sources in GCC sources, including generated files, instead of using *.c suffixes and compiling them as C++ anyway (that was the case since we've switched GCC to C++ in GCC 4.8). I've noticed gcc/cobol has 3 generated files still with c ex

Re: [PATCH] cobol: Use *.cc suffix for bison/flex generated C++ files

2025-03-11 Thread Richard Biener
On Tue, 11 Mar 2025, Jakub Jelinek wrote: > Hi! > > In GCC 12 we've switched to using *.cc suffixes for C++ sources in GCC > sources, including generated files, instead of using *.c suffixes and > compiling them as C++ anyway (that was the case since we've switched > GCC to C++ in GCC 4.8). > I'v