https://github.com/python/cpython/commit/39fa19a4ccb4c75d2421187e5b8d83c73b48ca4d commit: 39fa19a4ccb4c75d2421187e5b8d83c73b48ca4d branch: main author: Bénédikt Tran <10796600+picn...@users.noreply.github.com> committer: picnixz <10796600+picn...@users.noreply.github.com> date: 2025-03-30T18:48:00Z summary:
gh-131895: fix clang `$PATH` on Darwin runners for tail-calling interpreter (#131903) files: M .github/workflows/tail-call.yml diff --git a/.github/workflows/tail-call.yml b/.github/workflows/tail-call.yml index 3c9098b88ee3b1..572ff45e51ef00 100644 --- a/.github/workflows/tail-call.yml +++ b/.github/workflows/tail-call.yml @@ -112,8 +112,8 @@ jobs: find /usr/local/bin -lname '*/Library/Frameworks/Python.framework/*' -delete brew install llvm@${{ matrix.llvm }} export SDKROOT="$(xcrun --show-sdk-path)" - export PATH="/opt/homebrew/opt/llvm/bin:$PATH" - export PATH="/usr/local/opt/llvm/bin:$PATH" + export PATH="/opt/homebrew/opt/llvm@${{ matrix.llvm }}/bin:$PATH" + export PATH="/usr/local/opt/llvm@${{ matrix.llvm }}/bin:$PATH" CC=clang-19 ./configure --with-tail-call-interp make all --jobs 4 ./python.exe -m test --multiprocess 0 --timeout 4500 --verbose2 --verbose3 _______________________________________________ Python-checkins mailing list -- python-checkins@python.org To unsubscribe send an email to python-checkins-le...@python.org https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: arch...@mail-archive.com