We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 86a9f26 commit 6075dfaCopy full SHA for 6075dfa
build.sh
@@ -6,6 +6,15 @@ version=${2:?}
6
build=${3:?}
7
export HOST=${4:?}
8
9
+if [ "$(uname)" != "Linux" ]; then
10
+ echo 'These scripts may not work on non-Linux platforms. For example, building '
11
+ echo 'OpenSSL 3.0.13 on macOS led to the runtime error: dlopen failed: cannot find '
12
+ echo '"libcrypto_python.so" from verneed[1] in DT_NEEDED list for '
13
+ echo '"/data/data/org.python.testbed/files/python/lib/python3.13/lib-dynload/_ssl.cpython-313-aarch64-linux-android.so".'
14
+ echo 'The cause of this is unknown.'
15
+ exit 1
16
+fi
17
+
18
recipe_dir=$(dirname $(realpath $0))/$name
19
$recipe_dir/build.sh $version
20
0 commit comments