Skip to content

Commit

Permalink
Cross-compile to iOS
Browse files Browse the repository at this point in the history
  • Loading branch information
hannobraun committed Dec 21, 2022
1 parent a4c5588 commit 14401bc
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions tools/cross-compiler/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,18 @@ use anyhow::anyhow;

fn main() -> anyhow::Result<()> {
let targets = [
Target {
triple: "aarch64-apple-ios",
crates: &[
"fj",
"fj-export",
"fj-interop",
"fj-kernel",
"fj-math",
"fj-operations",
"fj-proc",
],
},
Target {
triple: "aarch64-linux-android",
crates: &[
Expand Down

0 comments on commit 14401bc

Please sign in to comment.