-
Notifications
You must be signed in to change notification settings - Fork 12.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove Hacks and Fixmes from PR CI's LLVM-9 Container #79068
Conversation
(rust_highfive has picked a reviewer for you, use r? to override) |
python2.7 ../x.py --stage 2 test src/test/mir-opt --pass=build \ | ||
--host='' --target=armv5te-unknown-linux-gnueabi && \ | ||
python2.7 ../x.py --stage 2 test src/test/mir-opt \ | ||
--host='' --target=i686-unknown-linux-gnueabi && \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The target is called i686-unknown-linux-gnu
(without the eabi, that's an ARM specific thing).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, I was a bit over-eager with the copy and paste there, it's fixed now (though with a force-push instead of a commit because I didn't see your review in time, sorry)
Now with LLVM 9 being the minimum supported version, we can finally remove the hacks in the dockerfile. This wasn't in the main PR bumping the version as I didn't quite understand what's going on and needed here.
cb5abb7
to
a015c21
Compare
It seems that by default the 32-bit headers are not actually installed when installing development tooling. As we're using gcc headers, we need to install them as an extra package. See for reference: - https://stackoverflow.com/a/54082790 - https://askubuntu.com/a/106092 Also removed the now unused arm tooling
@bors r+ rollup=iffy Thanks! |
📌 Commit b8f682b has been approved by |
☀️ Test successful - checks-actions |
Now with LLVM 9 being the minimum supported version (thanks to #78848 ), we can
finally remove the hacks in the dockerfile.
This wasn't in the main PR bumping the version as I didn't quite
understand what's going on and needed here.
Relevant issues and PRs:
EMIT_MIR_FOR_EACH_BIT_WIDTH
). #70989I hope I actually adressed things correctly here?