Re: compiling with tcc fails on regex.c since commit 56b32251

2021-11-30 Thread Benno Schulenberg
Op 27-11-2021 om 10:01 schreef Paul Eggert: > tcc is failing because it claims to support C99 (it > defines __STDC_VERSION__ to 199901L), but it doesn't support variable length > arrays as C99 requires. Perhaps you could file a bug report with the tcc > folks? Reported as https://savannah.nongnu

Re: compiling with tcc fails on regex.c since commit 56b32251

2021-11-27 Thread Paul Eggert
Thanks for reporting that. tcc is failing because it claims to support C99 (it defines __STDC_VERSION__ to 199901L), but it doesn't support variable length arrays as C99 requires. Perhaps you could file a bug report with the tcc folks? A simple fix would be for tcc to predefine __STDC_NO_VLA__