mirror of
https://github.com/rustdesk/rustdesk.git
synced 2026-06-26 10:54:02 +08:00
20ce626654
Signed-off-by: Vasyl Gello <vasek.gello@gmail.com>
11 lines
261 B
Bash
Executable File
11 lines
261 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
#
|
|
# Fix OpenSSL build with Android NDK clang on 32-bit architectures
|
|
#
|
|
|
|
export CFLAGS="-DBROKEN_CLANG_ATOMICS"
|
|
export CXXFLAGS="-DBROKEN_CLANG_ATOMICS"
|
|
|
|
cargo ndk --platform 21 --target i686-linux-android build --release --features flutter
|