]> git.ozlabs.org Git - next-scripts/commitdiff
do_build: I am now using gcc 12
authorStephen Rothwell <sfr@canb.auug.org.au>
Fri, 17 Mar 2023 02:32:49 +0000 (13:32 +1100)
committerStephen Rothwell <sfr@canb.auug.org.au>
Fri, 17 Mar 2023 02:32:49 +0000 (13:32 +1100)
do_build

index ac731b405de20e2d62f289fb243ea7ec15db95e3..072db1399b2f77126b323a88a595db31e26e2d69 100755 (executable)
--- a/do_build
+++ b/do_build
@@ -115,10 +115,7 @@ $cmd <<-EOF
        d="$bparent/perf"
        [ -d \$d ] || mkdir \$d || exit 1
        log_perf=\$d.log
-       # the -Wno-psabi is to suppress
-       #       note: the layout of aggregates containing vectors with 8-byte alignment has changed in GCC 5
-       # warnings until at least gcc 12 when the warning will be removed
-       /usr/bin/time make -C tools/perf -f Makefile.perf -s -O -j60 O=\$d EXTRA_CFLAGS=-Wno-psabi > \$log_perf 2>&1
+       /usr/bin/time make -C tools/perf -f Makefile.perf -s -O -j60 O=\$d > \$log_perf 2>&1
        rc=\$?
 
        if [ \$rc -ne 0 ]; then