You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After updating the layer to the feature/rust-1.85.0 branch coming from 1.82.0, I noticed I couldn't build one of my projects' dependency crate libsqlite3-sys.
When looking at the commits between 1.82.0 and 1.85.0 I saw this commit: 96c802d. After reverting this commit I was able to build successfully on 1.85.0.
To reproduce:
Create Rust project with sqlx crate and the sqlite feature.
Create a recipe which inherits cargo_bin from the current master branch.
Build for aarch64-unknown-linux with a x86-64-unknown-linux host system.
The text was updated successfully, but these errors were encountered:
Hey there,
After updating the layer to the
feature/rust-1.85.0
branch coming from 1.82.0, I noticed I couldn't build one of my projects' dependency cratelibsqlite3-sys
.The full output is below:
My target is
aarch64-unknown-linux-gnu
but for some reasonTARGET
is set toSome(x86_64-unknown-linux-gnu)
, which is my host system.The
-m64
option should only be enabled forx86-64
,aix
orpowerpc64
, see: https://github.com/rust-lang/cc-rs/blob/8ea5e95c10d0a6b169233736e681be5442af9671/src/lib.rs#L2149When looking at the commits between 1.82.0 and 1.85.0 I saw this commit: 96c802d. After reverting this commit I was able to build successfully on 1.85.0.
To reproduce:
master
branch.aarch64-unknown-linux
with ax86-64-unknown-linux
host system.The text was updated successfully, but these errors were encountered: