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
9 changes: 7 additions & 2 deletions adbc_drivers_dev/make.py
Original file line number Diff line number Diff line change
Expand Up @@ -516,8 +516,13 @@ def check_linux(binary: Path) -> None:

# Like upstream. Match manylinux2014's versions.
# https://peps.python.org/pep-0599/#the-manylinux2014-policy
glibc_max = "2.17"
glibcxx_max = "3.14.19"
manylinux = get_var("MANYLINUX", "manylinux2014").lower()
if manylinux == "manylinux2014":
glibc_max = "2.17"
glibcxx_max = "3.4.19"
elif manylinux == "manylinux_2_28":
glibc_max = "2.28"
glibcxx_max = "3.4.32"

for symbol in symbols:
if "@GLIBC_" in symbol:
Expand Down