alexcrichton / openssl-src-rs

Source code and logic to build OpenSSL from source
Apache License 2.0
68 stars 113 forks source link

Failed on armv7s-apple-ios #91

Open bigknife opened 3 years ago

bigknife commented 3 years ago

I'm trying do a cross building for armv7s-apple-ios and armv7-apple-ios, I got a failure message:

thread 'main' panicked at 'don't know how to configure OpenSSL for armv7s-apple-ios'

It came from here, src/lib.js:275:

            "wasm32-wasi" => "gcc",
            "aarch64-apple-ios" => "ios64-cross",
            "x86_64-apple-ios" => "iossimulator-xcrun",
            _ => panic!("don't know how to configure OpenSSL for {}", target),

I've checked openssl lib, actually it supports the 32bit archs. How can I solve this?