From 7d5f942368daa06cc033974e311c72dfe7d9f447 Mon Sep 17 00:00:00 2001 From: Nicolas Kruse Date: Wed, 8 Oct 2025 23:22:27 +0200 Subject: [PATCH] python renamed --- tools/crosscompile.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/crosscompile.sh b/tools/crosscompile.sh index eb3cf24..5367f89 100644 --- a/tools/crosscompile.sh +++ b/tools/crosscompile.sh @@ -11,7 +11,7 @@ OPT=O3 mkdir -p $DEST # Windows x86_64 (ARM64) -python tools/generate_stencils.py --abi ms $SRC +python3 tools/generate_stencils.py --abi ms $SRC gcc-13 -$OPT -c $SRC -o $DEST/stencils_AMD64_$OPT.o # Windows x86 @@ -19,7 +19,7 @@ gcc-13 -m32 -$OPT -c $SRC -o $DEST/stencils_x86_$OPT.o # Native x86_64 -python tools/generate_stencils.py $SRC +python3 tools/generate_stencils.py $SRC gcc-13 -$OPT -c $SRC -o $DEST/stencils_x86_64_$OPT.o # Native i686