Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

gh-132132: Upgrade LLVM on tail calling CI#132098

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from1 commit
Commits
Show all changes
17 commits
Select commitHold shift + click to select a range
701aa8d
Fix double redeclaration on MSVC+clang-cl
Fidget-SpinnerApr 4, 2025
e449148
trigger CI
Fidget-SpinnerApr 4, 2025
5eea591
Upgrade to LLVM 20
Fidget-SpinnerApr 4, 2025
fcb45ef
Fix
Fidget-SpinnerApr 4, 2025
ce1a4ae
fix macos
Fidget-SpinnerApr 4, 2025
d2002cd
fix macOS
Fidget-SpinnerApr 4, 2025
c8afa07
fix macOS for real this time
Fidget-SpinnerApr 4, 2025
728eb68
maybe fix macOS?
Fidget-SpinnerApr 4, 2025
bc1d927
Convince clang to behave like on Linux
Fidget-SpinnerApr 4, 2025
a468604
remove useless extern
Fidget-SpinnerApr 4, 2025
07cafa9
Update remote_debugging.c
Fidget-SpinnerApr 4, 2025
bd00b78
Update remote_debugging.c
Fidget-SpinnerApr 4, 2025
04d34df
Update remote_debugging.c
Fidget-SpinnerApr 4, 2025
5de6b43
revert debug offset changes
Fidget-SpinnerApr 5, 2025
e786fd8
Merge remote-tracking branch 'upstream/main' into fix-double-redeclar…
Fidget-SpinnerApr 5, 2025
e4ff0e0
try eval brew shellenv
Fidget-SpinnerApr 5, 2025
b9c97f6
revert eval
Fidget-SpinnerApr 5, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
PrevPrevious commit
NextNext commit
Fix
  • Loading branch information
@Fidget-Spinner
Fidget-Spinner committedApr 4, 2025
commitfcb45ef74642708945c0f164084a385aabaabc11
12 changes: 7 additions & 5 deletions.github/workflows/tail-call.yml
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -105,16 +105,18 @@ jobs:
# This is a bug in the macOS runner image where the pre-installed Python is installed in the same
# directory as the Homebrew Python, which causes the build to fail for macos-13. This line removes
# the symlink to the pre-installed Python so that the Homebrew Python is used instead.
# Note: when a new LLVM is released, the homebrew installation directory changes, so the builds will fail.
# We either need to upgrade LLVM or change the directory being pointed to.
- name: Native macOS (release)
if: runner.os == 'macOS'
run: |
brew update
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@${{ matrix.llvm }}/bin:$PATH"
export PATH="/usr/local/opt/llvm@${{ matrix.llvm }}/bin:$PATH"
CC=clang-19 ./configure --with-tail-call-interp
export PATH="/opt/homebrew/Cellar/llvm/{{ matrix.llvm }}.1.0:$PATH"
export PATH="/usr/local/opt/llvm/bin:$PATH"
CC=clang-20 ./configure --with-tail-call-interp
make all --jobs 4
./python.exe -m test --multiprocess 0 --timeout 4500 --verbose2 --verbose3

Expand All@@ -123,7 +125,7 @@ jobs:
run: |
sudo bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)" ./llvm.sh ${{ matrix.llvm }}
export PATH="$(llvm-config-${{ matrix.llvm }} --bindir):$PATH"
CC=clang-19 ./configure --with-tail-call-interp --with-pydebug
CC=clang-20 ./configure --with-tail-call-interp --with-pydebug
make all --jobs 4
./python -m test --multiprocess 0 --timeout 4500 --verbose2 --verbose3

Expand All@@ -132,7 +134,7 @@ jobs:
run: |
sudo bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)" ./llvm.sh ${{ matrix.llvm }}
export PATH="$(llvm-config-${{ matrix.llvm }} --bindir):$PATH"
CC=clang-19 ./configure --with-tail-call-interp --disable-gil
CC=clang-20 ./configure --with-tail-call-interp --disable-gil
make all --jobs 4
./python -m test --multiprocess 0 --timeout 4500 --verbose2 --verbose3

4 changes: 3 additions & 1 deletionInclude/internal/pycore_debug_offsets.h
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -23,10 +23,12 @@ extern "C" {
declaration \
_GENERATE_DEBUG_SECTION_LINUX(name)

#if defined(MS_WINDOWS)
#if defined(MS_WINDOWS) && !defined(__clang__)
#define _GENERATE_DEBUG_SECTION_WINDOWS(name) \
_Pragma(Py_STRINGIFY(section(Py_STRINGIFY(name), read, write))) \
__declspec(allocate(Py_STRINGIFY(name)))
#elif defined(MS_WINDOWS) && defined(__clang__)
_Pragma(Py_STRINGIFY(section(Py_STRINGIFY(name), read, write)))
#else
#define _GENERATE_DEBUG_SECTION_WINDOWS(name)
#endif
Expand Down
Loading

[8]ページ先頭

©2009-2025 Movatter.jp