Skip to content

Commit 3648b30

Browse files
committed
update callsite
1 parent 1d029bf commit 3648b30

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

backends/qualcomm/scripts/download_qnn_sdk.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -498,8 +498,9 @@ def install_qnn_sdk() -> bool:
498498
True if both steps succeeded (or were already satisfied), else False.
499499
"""
500500
logger.info("[QNN] Starting SDK installation")
501-
_ensure_glibc_minimum(GLIBC_VERSION)
502-
if not _check_tmp_glibc():
503-
logger.error("[glibc] Pre-installed glibc check failed. Exiting early.")
504-
return False
501+
502+
# Make sure we’re running under >= 2.34
503+
ensure_glibc_minimum(GLIBC_VERSION)
504+
505+
# libc++ and QNN SDK setup
505506
return _ensure_libcxx_stack() and _ensure_qnn_sdk_lib()

0 commit comments

Comments
 (0)