Skip to content
Merged

log #59

Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# Contact: [email protected], x.com/qubitium

[build-system]
requires = ["setuptools>=70", "wheel", "cmake>=3.27", "ninja"]
requires = ["setuptools>=80", "wheel", "cmake>=3.27", "ninja"]
build-backend = "setuptools.build_meta"

[project]
Expand Down
2 changes: 2 additions & 0 deletions setup_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -899,11 +899,13 @@ def _path_matches_host_multiarch(path: str, host_multiarch: set[str]) -> bool:
lower = path.lower()
for token in _UNSUPPORTED_MULTIARCH_TOKENS:
if token in lower:
print(f"Skipping lib: {lower}")
return False
if not host_multiarch:
return True
for token in _KNOWN_MULTIARCH_TOKENS:
if token in lower and token not in host_multiarch:
print(f"Skipping lib: {lower}")
return False
return True

Expand Down
Loading