mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
69e3aed6b5
* fix: fix linux build * Merge pull request #599 from AppFlowy-IO/refactor/grid_decode_cell_data Refactor/grid decode cell data * feat: ⭐ configured android vscode workflow * chore: clean up android vscode * fix: fixed typo * chore: remove unused code Co-authored-by: Nathan.fooo <86001920+appflowy@users.noreply.github.com> Co-authored-by: Lucas.Xu <lucas.xu@appflowy.io>
24 lines
648 B
TOML
24 lines
648 B
TOML
#[build]
|
|
#target-dir = "./bin"
|
|
|
|
[target.x86_64-apple-darwin]
|
|
rustflags=["-C", "link-arg=-mmacosx-version-min=10.11"]
|
|
|
|
[target.aarch64-apple-darwin]
|
|
rustflags=["-C", "link-arg=-mmacosx-version-min=10.11"]
|
|
|
|
[target.aarch64-linux-android]
|
|
ar = "path-to-ndk/llvm-ar"
|
|
linker = "path-to-ndk/aarch64-linux-android29-clang"
|
|
|
|
[target.armv7-linux-androideabi]
|
|
ar = "path-to-ndk/llvm-ar"
|
|
linker = "path-to-ndk/armv7a-linux-androideabi29-clang"
|
|
|
|
[target.i686-linux-android]
|
|
ar = "path-to-ndk/llvm-ar"
|
|
linker = "path-to-ndk/i686-linux-android29-clang"
|
|
|
|
[target.x86_64-linux-android]
|
|
ar = "path-to-ndk/llvm-ar"
|
|
linker = "path-to-ndk/x86_64-linux-android29-clang" |