From f111b48d6a7d9ffd281f2b383b6239d7e1970761 Mon Sep 17 00:00:00 2001 From: Richard Date: Wed, 13 Oct 2021 16:29:44 -0300 Subject: Add cross compilation targets for `armv7` and `aarch64` --- Cross.toml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Cross.toml (limited to 'Cross.toml') diff --git a/Cross.toml b/Cross.toml new file mode 100644 index 00000000..92e51543 --- /dev/null +++ b/Cross.toml @@ -0,0 +1,7 @@ +[target.armv7-unknown-linux-gnueabihf] +image = "iced-rs/armv7" +xargo = false + +[target.aarch64-unknown-linux-gnu] +image = "iced-rs/aarch64" +xargo = false \ No newline at end of file -- cgit From 522368e8af6947ea0676f62bf1ae5f68acb2058d Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Thu, 20 Jan 2022 17:37:02 +0700 Subject: Build `todos` for Raspberry Pis in `build` workflow --- Cross.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'Cross.toml') diff --git a/Cross.toml b/Cross.toml index 92e51543..17cbf9c1 100644 --- a/Cross.toml +++ b/Cross.toml @@ -1,7 +1,7 @@ -[target.armv7-unknown-linux-gnueabihf] -image = "iced-rs/armv7" +[target.aarch64-unknown-linux-gnu] +image = "icedrs/iced:aarch64" xargo = false -[target.aarch64-unknown-linux-gnu] -image = "iced-rs/aarch64" -xargo = false \ No newline at end of file +[target.armv7-unknown-linux-gnueabihf] +image = "icedrs/iced:armv7" +xargo = false -- cgit