Skip to content

Commit dc9fd92

Browse files
committed
add logging
1 parent be807ad commit dc9fd92

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

backends/qualcomm/scripts/download_qnn_sdk.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -440,6 +440,7 @@ def install_qnn_sdk() -> bool:
440440
Returns:
441441
True if both steps succeeded (or were already satisfied), else False.
442442
"""
443+
ok_libc = check_glibc_exist_and_validate()
443444
ok_libcxx = _ensure_libcxx_stack()
444445
ok_qnn = _ensure_qnn_sdk_lib()
445-
return bool(ok_qnn and ok_libcxx)
446+
return bool(ok_qnn and ok_libcxx and ok_libc)

0 commit comments

Comments
 (0)