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 91617e0 commit a0beaf2Copy full SHA for a0beaf2
cpython-unix/build-openssl.sh
@@ -25,8 +25,11 @@ fi
25
26
if [ "${PYBUILD_PLATFORM}" = "macos" ]; then
27
OPENSSL_TARGET=darwin64-x86_64-cc
28
-else
+elif [ "${TARGET_TRIPLE}" = "x86_64-unknown-linux-gnu" ]; then
29
OPENSSL_TARGET=linux-x86_64
30
+else
31
+ echo "Error: unsupported target"
32
+ exit 1
33
fi
34
35
/usr/bin/perl ./Configure --prefix=/tools/deps ${OPENSSL_TARGET} no-shared ${EXTRA_FLAGS}
0 commit comments