Skip to content
Merged
Changes from all commits
Commits
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
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
--- a/build_scripts/build_info_collector.py
+++ b/build_scripts/build_info_collector.py
@@ -65,7 +65,7 @@
@@ -65,8 +65,8 @@
py_include_dir):
"""Helper for finding the Python library on UNIX"""
if py_libdir is None or not Path(py_libdir).exists():
- py_libdir = Path(py_prefix) / "lib"
- if py_include_dir is None or not Path(py_include_dir).exists():
+ py_libdir = Path(py_prefix) / "lib64"
if py_include_dir is None or not Path(py_include_dir).exists():
+ if True or py_include_dir is None or not Path(py_include_dir).exists():
directory = f"include/python{py_version}"
py_include_dir = Path(py_prefix) / directory
lib_exts = ['.so']
Loading