From a3d94a4f65f452f19d5ba32211f9ab3fa41cb2eb Mon Sep 17 00:00:00 2001 From: Ranger <32590310+southorange0929@users.noreply.github.com> Date: Mon, 13 May 2024 23:03:06 +0800 Subject: [PATCH] feat: support openharmony platform which is tier2 stage (#240) --- src/lib.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index 6719c449..10db4c68 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -370,6 +370,9 @@ impl Build { "aarch64-apple-ios" => "ios64-cross", "x86_64-apple-ios" => "iossimulator-xcrun", "aarch64-apple-ios-sim" => "iossimulator-xcrun", + "aarch64-unknown-linux-ohos" => "linux-aarch64", + "armv7-unknown-linux-ohos" => "linux-generic32", + "x86_64-unknown-linux-ohos" => "linux-x86_64", _ => panic!("don't know how to configure OpenSSL for {}", target), };