build_cross_tools (GCC2): Use -std=gnu89 for GCC 13 also.

It shouldn't hurt, and may fix the build in more environments.
This commit is contained in:
Augustin Cavalier
2026-05-19 13:15:41 -04:00
parent c6024e1bff
commit ff1c6abba8
+1 -1
View File
@@ -126,7 +126,7 @@ CC_VERSION=`$CC -dumpversion`
if [ ${CC_VERSION%%.*} -ge 10 ]; then
export CC="$CC -fcommon"
fi
if [ ${CC_VERSION%%.*} -ge 14 ]; then
if [ ${CC_VERSION%%.*} -ge 13 ]; then
export CC="$CC -std=gnu89"
fi