@@ -74,15 +74,15 @@ jobs:
7474 if : runner.os == 'Windows' && matrix.architecture != 'ARM64'
7575 run : |
7676 choco install llvm --allow-downgrade --no-progress --version ${{ matrix.llvm }}.1.0
77- ./PCbuild/build.bat --tail-calling -interp ${{ matrix.debug && '-d' || '' }} -p ${{ matrix.architecture }}
77+ ./PCbuild/build.bat --tail-call -interp ${{ matrix.debug && '-d' || '' }} -p ${{ matrix.architecture }}
7878 ./PCbuild/rt.bat ${{ matrix.debug && '-d' || '' }} -p ${{ matrix.architecture }} -q --multiprocess 0 --timeout 4500 --verbose2 --verbose3
7979
8080 # No tests (yet):
8181 - name : Emulated Windows
8282 if : runner.os == 'Windows' && matrix.architecture == 'ARM64'
8383 run : |
8484 choco install llvm --allow-downgrade --no-progress --version ${{ matrix.llvm }}.1.0
85- ./PCbuild/build.bat --tail-calling -interp ${{ matrix.debug && '-d' || '' }} -p ${{ matrix.architecture }}
85+ ./PCbuild/build.bat --tail-call -interp ${{ matrix.debug && '-d' || '' }} -p ${{ matrix.architecture }}
8686
8787 # The `find` line is required as a result of https://github.com/actions/runner-images/issues/9966.
8888 # This is a bug in the macOS runner image where the pre-installed Python is installed in the same
9595 find /usr/local/bin -lname '*/Library/Frameworks/Python.framework/*' -delete
9696 brew install llvm@${{ matrix.llvm }}
9797 export SDKROOT="$(xcrun --show-sdk-path)"
98- ./configure --with-tail-calling -interp ${{ matrix.debug && '--with-pydebug' || '' }}
98+ ./configure --with-tail-call -interp ${{ matrix.debug && '--with-pydebug' || '' }}
9999 make all --jobs 4
100100 ./python.exe -m test --multiprocess 0 --timeout 4500 --verbose2 --verbose3
101101
@@ -105,7 +105,7 @@ jobs:
105105 run : |
106106 sudo bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)" ./llvm.sh ${{ matrix.llvm }}
107107 export PATH="$(llvm-config-${{ matrix.llvm }} --bindir):$PATH"
108- CC=clang-19 ./configure --with-tail-calling -interp ${{ matrix.debug && '--with-pydebug' || '' }}
108+ CC=clang-19 ./configure --with-tail-call -interp ${{ matrix.debug && '--with-pydebug' || '' }}
109109 make all --jobs 4
110110 ./python -m test --multiprocess 0 --timeout 4500 --verbose2 --verbose3
111111
0 commit comments