Uh oh!
There was an error while loading. Please reload this page.
Remove crate_type and crate_name attributes from compiler crates - #41706
Remove crate_type and crate_name attributes from compiler crates#41706daniellockyer wants to merge 1 commit into
Conversation
rust-highfive
commented
May 2, 2017
Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @brson (or someone else) soon. If any changes to this PR are deemed necessary, please add them as extra commits. This ensures that the reviewer can see what has changed since they last reviewed the code. Due to the way GitHub handles out-of-date commits, this should also make it reasonably obvious what issues have or haven't been addressed. Large or tricky changes may require several passes of review and changes. Please see the contribution instructions for more information. |
aidanhs
commented
May 3, 2017
Mark-Simulacrum
commented
May 7, 2017
@brson Checking in, could you review this PR? |
brson
commented
May 7, 2017
bors
commented
May 7, 2017
📌 Commit f3cee21 has been approved by |
brson
commented
May 7, 2017
Travis failure is spurious. |
bors
commented
May 7, 2017
⌛ Testing commit f3cee21 with merge fbd491e... |
bors
commented
May 7, 2017
💔 Test failed - status-appveyor |
There was a problem hiding this comment.
This needs to be re-added, as there is no associated Cargo.toml.
There was a problem hiding this comment.
This needs to be re-added, as there is no associated Cargo.toml.
Mark-Simulacrum
commented
May 7, 2017
@neosilky Found a few more problems, but I think those should be the last things. |
daniellockyer
commented
May 8, 2017
@Mark-Simulacrum Ah yes! I've re-added in the latest commit. |
Mark-Simulacrum
commented
May 8, 2017
@brson I think this is ready for another review. Could you take a look? |
carols10cents
commented
May 8, 2017
Looks like there's a test failure? |
bors
commented
May 13, 2017
☔ The latest upstream changes (presumably #41847) made this pull request unmergeable. Please resolve the merge conflicts. |
arielb1
commented
May 16, 2017
Nice PR, @neosilky! There are however some test failures. Do you need help fixing them? |
bors
commented
May 21, 2017
☔ The latest upstream changes (presumably #42130) made this pull request unmergeable. Please resolve the merge conflicts. |
compilation failure: Are you working on this @neosilky? Need any help? |
arielb1
commented
May 23, 2017
Feel free to ask for help on IRC (on #rust-internals or #rustc) - you can ping me (arielb1/arielby) personally. |
daniellockyer
commented
May 24, 2017
Sorry @arielb1, I'm just prepping for an exam tomorrow... I will fix this up after then! |
aidanhs
commented
Jun 1, 2017
Hi @neosilky, just want to make sure this hasn't dropped off your radar! Do you think you'll get time to look at it? |
Mark-Simulacrum
commented
Jun 11, 2017
Taking a fresh look at the test failure, which is: It really looks like the problem is that https://github.com/rust-lang/rust/blob/master/src/test/run-make/alloc-extern-crates/Makefile#L5 is missing a -include ../tools.mk
all:
$(RUSTC) fakealloc.rs
$(RUSTC) ../../../liballoc/lib.rs --cfg feature=\"external_crate\" --extern external=$(TMPDIR)/$(shell$(RUSTC) --print file-names fakealloc.rs)# ^ should be `--crate-type=rlib` |
After you fix the test, you can check it locally by running |
bors
commented
Jun 15, 2017
☔ The latest upstream changes (presumably #42648) made this pull request unmergeable. Please resolve the merge conflicts. |
arielb1
commented
Jun 20, 2017
🕸 Closing PR to keep the queue clean 🕸. This looks like a simple fix - feel free to reopen with it. |
Fixes#41701.