8000 Final-ish cleanup · python/cpython@0d358ef · GitHub
[go: up one dir, main page]

Skip to content

Commit 0d358ef

Browse files
committed
Final-ish cleanup
1 parent 50b0df8 commit 0d358ef

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ on:
1313
- '3.10'
1414
- '3.9'
1515
- '3.8'
16-
- 'justin' # XXX
1716
pull_request:
1817
branches:
1918
- 'main'

.github/workflows/jit.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ name: JIT
22
on: push
33
jobs:
44
jit:
5-
# if: false # XXX
5+
# Comment this line to run JIT CI:
6+
# if: false # XXX: Uncomment before merging.
67
name: ${{ matrix.target }} (${{ matrix.debug && 'Debug' || 'Release' }})
78
runs-on: ${{ matrix.runner }}
89
strategy:

PCbuild/pythoncore.vcxproj.filters

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -664,7 +664,7 @@
664664
<Filter>Include\cpython</Filter>
665665
</ClInclude>
666666
<ClInclude Include="..\Include\internal\pycore_jit.h">
667-
<Filter>Include\cpython</Filter>
667+
<Filter>Include\internal</Filter>
668668
</ClInclude>
669669
<ClInclude Include="..\Include\internal\pycore_list.h">
670670
<Filter>Include\internal</Filter>

Tools/jit/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ class StencilGroup:
121121
)
122122

123123
def global_offset_table_lookup(self, symbol: str | None) -> int:
124-
"""when disabling position-independent-code, macOS insists on using the GOT."""
124+
"""Even when disabling PIC, macOS insists on using the global offset table."""
125125
if symbol is None:
126126
return len(self.data.body)
127127
default = 8 * len(self.global_offset_table)

0 commit comments

Comments
 (0)
0