From: Stephen Rothwell Date: Mon, 22 Jul 2019 05:05:43 +0000 (+1000) Subject: do_last_build: use the Debian cross compiler for i386 as well X-Git-Url: https://git.ozlabs.org/?a=commitdiff_plain;h=03f7bf08b388f9c86efb989bf4d50bedce2857a3;p=next-scripts do_last_build: use the Debian cross compiler for i386 as well --- diff --git a/do_last_build b/do_last_build index 51d3fd3..b385bb6 100755 --- a/do_last_build +++ b/do_last_build @@ -64,10 +64,16 @@ $cmd <<-EOF make ARCH=powerpc -s O=\$d pseries_le_defconfig make ARCH=powerpc O=\$d -j$j_factor -O -s + echo Building: i386 defconfig + d=../i386_defconfig + [ -d \$d ] || mkdir \$d + make ARCH=i386 O=\$d CROSS_COMPILE=x86_64-linux-gnu- -s defconfig + make ARCH=i386 O=\$d CROSS_COMPILE=x86_64-linux-gnu- -j$j_factor -O -s + rm .scmversion EOF -for a in i386:x86_64 sparc64 sparc:sparc64 +for a in sparc64 sparc:sparc64 do ka=${a%:*} ca=${a#*:}