Conversation
|
@kennykerr I think it might have passed the checks because the |
|
...although I'm not sure how portable that is, |
|
@wravery Yup, working on it! We just discovered RUSTFLAGS are completely ignored when cross compiling which adds another dimension to the problem. 😂 |
|
Looks like a pretty old issue: rust-lang/cargo#4423, most of the movement on that seems to be around making sure that compiling with Would it be sufficient to ignore that difference and only break the build for the host triplet? It looks like the rust-lang/cargo#9322 PR was merged June 1st, so I would guess it's in the nightly branch at least. So if you set |
Ah, never mind. I just tried that against a local nightly toolchain and it doesn't work. Maybe it's not in nightly yet, or maybe I'm misunderstanding the fix in rust-lang/cargo#9322. |
|
@wravery In this case, we were working a bit too hard. We configured the default toolchain (i.e. x86 / x64) during CI but then also did a bit of extra work for cross-compilation (e.g. added targets via rustup, specified New PR #15 is failing expectedly now. |
Test fix for #13