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 db5eeda commit 4eefd95Copy full SHA for 4eefd95
backends/qualcomm/scripts/install_qnn_sdk.sh
@@ -7,8 +7,11 @@
7
8
set -ex
9
10
-# Source QNN configuration
11
-source "$(dirname "$0")/qnn_config.sh"
+# Get the absolute path of this script
+SCRIPT_DIR="$( cd -- "$(dirname "${BASH_SOURCE[0]}")" >/dev/null 2>&1 ; pwd -P )"
12
+
13
+# Source QNN configuration from the same directory
14
+source "${SCRIPT_DIR}/qnn_config.sh"
15
16
# Function to install Android NDK (only if not already set)
17
setup_android_ndk() {
0 commit comments