mirror of
https://github.com/python/cpython.git
synced 2025-07-07 19:35:27 +00:00
gh-131895: fix clang $PATH
on Darwin runners for tail-calling interpreter (#131903)
This commit is contained in:
parent
2c3e3fe54c
commit
39fa19a4cc
1 changed files with 2 additions and 2 deletions
4
.github/workflows/tail-call.yml
vendored
4
.github/workflows/tail-call.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue