Skip to content

Commit d8182bd

Browse files
committed
Try to fix arm
1 parent e505c50 commit d8182bd

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/linux-build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
matrix:
2121
os: [ubuntu-latest, ubuntu-24.04-arm]
2222
# python-version: ["3.9", "3.10", "3.11", "3.12"]
23-
python-version: ["3.9", "3.12"]
23+
python-version: ["3.12"]
2424

2525
env:
2626
PYTHON_VERSION: ${{ matrix.python-version }}

src/pyoptinterface/_src/jit_c.py

+4
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,17 @@
3737
"/usr/include",
3838
"/usr/local/include",
3939
"/usr/include/x86_64-linux-gnu",
40+
# arm
41+
"/usr/include/aarch64-linux-gnu",
4042
]
4143
)
4244
libtcc_extra_lib_paths.extend(
4345
[
4446
"/usr/lib",
4547
"/usr/local/lib",
4648
"/usr/lib/x86_64-linux-gnu",
49+
# arm
50+
"/usr/lib/aarch64-linux-gnu",
4751
]
4852
)
4953

0 commit comments

Comments
 (0)