We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d029bf commit 3648b30Copy full SHA for 3648b30
backends/qualcomm/scripts/download_qnn_sdk.py
@@ -498,8 +498,9 @@ def install_qnn_sdk() -> bool:
498
True if both steps succeeded (or were already satisfied), else False.
499
"""
500
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
+
+ # Make sure we’re running under >= 2.34
+ ensure_glibc_minimum(GLIBC_VERSION)
505
+ # libc++ and QNN SDK setup
506
return _ensure_libcxx_stack() and _ensure_qnn_sdk_lib()
0 commit comments