mirror of
https://github.com/strongswan/strongswan.git
synced 2025-10-03 00:00:24 -04:00
android: Skip unknown ABIs when building OpenSSL
Newer NDKs have RISC-V as experimental ABI (not enabled by default, see next commit). If we don't have a mapping for a specific target, OpenSSL falls back to 'android-arm', so that won't really work (interestingly, it does build).
This commit is contained in:
parent
0f1f375a21
commit
09edb565ba
@ -35,6 +35,10 @@ x86)
|
||||
x86_64)
|
||||
OPTIONS="android-x86_64"
|
||||
;;
|
||||
*)
|
||||
echo "!! Skipping unknown ABI '${ABI}'"
|
||||
continue
|
||||
;;
|
||||
esac
|
||||
|
||||
OPTIONS="${OPTIONS} \
|
||||
|
Loading…
x
Reference in New Issue
Block a user