File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -133,17 +133,15 @@ jobs:
133
133
make all --jobs 4
134
134
./python.exe -m test --multiprocess 0 --timeout 4500 --verbose2 --verbose3
135
135
136
- # --with-lto has been removed temporarily as a result of an open issue in LLVM 18 (see https://github.com/llvm/llvm-project/issues/87553)
137
136
- name : Native Linux
138
137
if : runner.os == 'Linux' && matrix.architecture == 'x86_64'
139
138
run : |
140
139
sudo bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)" ./llvm.sh ${{ matrix.llvm }}
141
140
export PATH="$(llvm-config-${{ matrix.llvm }} --bindir):$PATH"
142
- ./configure --enable-experimental-jit ${{ matrix.debug && '--with-pydebug' || '--enable-optimizations' }}
141
+ ./configure --enable-experimental-jit ${{ matrix.debug && '--with-pydebug' || '--enable-optimizations --with-lto ' }}
143
142
make all --jobs 4
144
143
./python -m test --multiprocess 0 --timeout 4500 --verbose2 --verbose3
145
144
146
- # --with-lto has been removed temporarily as a result of an open issue in LLVM 18 (see https://github.com/llvm/llvm-project/issues/87553)
147
145
- name : Emulated Linux
148
146
if : runner.os == 'Linux' && matrix.architecture != 'x86_64'
149
147
# The --ignorefile on ./python -m test is used to exclude tests known to fail when running on an emulated Linux.
@@ -161,7 +159,7 @@ jobs:
161
159
CC="${{ matrix.compiler == 'clang' && 'clang --target=$HOST' || '$HOST-gcc' }}" \
162
160
CPP="$CC --preprocess" \
163
161
HOSTRUNNER=qemu-${{ matrix.architecture }} \
164
- ./configure --enable-experimental-jit ${{ matrix.debug && '--with-pydebug' || '--enable-optimizations ' }} --build=x86_64-linux-gnu --host="$HOST" --with-build-python=../build/bin/python3 --with-pkg-config=no ac_cv_buggy_getaddrinfo=no ac_cv_file__dev_ptc=no ac_cv_file__dev_ptmx=yes
162
+ ./configure --enable-experimental-jit ${{ matrix.debug && '--with-pydebug' || '--enable-optimizations --with-lto ' }} --build=x86_64-linux-gnu --host="$HOST" --with-build-python=../build/bin/python3 --with-pkg-config=no ac_cv_buggy_getaddrinfo=no ac_cv_file__dev_ptc=no ac_cv_file__dev_ptmx=yes
165
163
make all --jobs 4
166
164
./python -m test --ignorefile=Tools/jit/ignore-tests-emulated-linux.txt --multiprocess 0 --timeout 4500 --verbose2 --verbose3
167
165
You can’t perform that action at this time.
0 commit comments