-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
bootstrap: Add missing cputype matching for sparc64 #45624
Conversation
@bors r+ rollup Thanks! |
📌 Commit 72a7232 has been approved by |
⌛ Testing commit 72a7232bfde088409456059ba65ccbd54d7e181d with merge 6efa77bcbfcb45aa14cacac5422aed0c8ad89ba1... |
💔 Test failed - status-travis |
@bors retry Travis incident, no jobs starting. https://www.traviscistatus.com/incidents/xgpn2tq6mx7k |
72a7232
to
d7dec7c
Compare
@bors: retry Seems like bors missed the first one |
@bors: r=kennytm |
📌 Commit d7dec7c has been approved by |
bootstrap: Add missing cputype matching for sparc64 Trying to configure rust natively on sparc64-unknown-linux-gnu currently fails with: ``` root@deb4g:/local_scratch/glaubitz/rust/rust# ./configure --host=sparc64-unknown-linux-gnu --enable-local-rust --local-rust-root=/usr/local configure: processing command line configure: configure: build.host := ['sparc64-unknown-linux-gnu'] configure: build.rustc := /usr/local/bin/rustc configure: build.cargo := /usr/local/bin/cargo configure: build.rustc := /usr/local/bin/rustc configure: build.cargo := /usr/local/bin/cargo configure: build.configure-args := ['--host=sparc64-unknown-linux-gnu', '--enable ... unknown cpu type: sparc64 root@deb4g:/local_scratch/glaubitz/rust/rust# ``` This is trivially fixed by defining sparc64 as a valid cputype.
Trying to configure rust natively on sparc64-unknown-linux-gnu currently fails with:
This is trivially fixed by defining sparc64 as a valid cputype.