Skip to content

Commit f215493

Browse files
committed
i missed $
1 parent 4042883 commit f215493

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/tail-call.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,11 +76,13 @@ jobs:
7676
brew install llvm@${{ matrix.llvm }}
7777
export SDKROOT="$(xcrun --show-sdk-path)"
7878
export PATH="/opt/homebrew/opt/llvm/bin:$PATH"
79-
export PATH="/opt/homebrew/opt/llvm@{{ matrix.llvm }}/bin:$PATH"
80-
export PATH="/usr/local/opt/llvm@{{ matrix.llvm }}/bin:$PATH"
79+
export PATH="/opt/homebrew/opt/llvm@${{ matrix.llvm }}/bin:$PATH"
80+
export PATH="/usr/local/opt/llvm@${{ matrix.llvm }}/bin:$PATH"
8181
export PATH="/usr/local/opt/llvm/bin:$PATH"
8282
echo "$PATH"
8383
which clang-19
84+
export LDFLAGS="-L/opt/homebrew/opt/llvm@${{ matrix.llvm }}/lib"
85+
export CPPFLAGS="-I/opt/homebrew/opt/llvm@${{ matrix.llvm }}/include"
8486
CC=clang-19 ./configure --with-tail-call-interp
8587
make all --jobs 4
8688
./python.exe -m test --multiprocess 0 --timeout 4500 --verbose2 --verbose3

0 commit comments

Comments
 (0)