Use -std=c17 for gcc15

This commit is contained in:
2025-07-26 00:43:03 -04:00
parent 25e66b3d19
commit 36c0786255

View File

@@ -190,6 +190,7 @@ install_dependencies() {
python3-devel python3-devel
python3-setuptools python3-setuptools
python3-pyelftools python3-pyelftools
perl
perl-base perl-base
perl-Data-Dumper perl-Data-Dumper
perl-File-Compare perl-File-Compare
@@ -591,7 +592,7 @@ from_source() {
((DEBUG)) && make_opts+=("-j1") || make_opts+=("-j$(($(nproc)-1))") ((DEBUG)) && make_opts+=("-j1") || make_opts+=("-j$(($(nproc)-1))")
# Make image # Make image
if ! execute ionice -c 3 chrt --idle 0 nice -n19 make "${make_opts[@]}" world; then if ! execute HOST_CFLAGS="-std=c17" ionice -c 3 chrt --idle 0 nice -n19 make "${make_opts[@]}" world; then
echo "Error: make failed" echo "Error: make failed"
return 1 return 1
fi fi