-
Notifications
You must be signed in to change notification settings - Fork 63
Conversation
Also, could you rebase this on top of rust-lang/master? |
It's a bit hacky because the ICE from rust-lang/rust#67019 needs compiler flags and I don't know of a way to provide that from within a .rs file.
0b5783c
to
e36cfd9
Compare
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.
Thanks for updating it
The reason for the permission denied
error is because the file isn't marked executable in git. If that's because you're on windows where that's a pain you can use git update-index --chmod=+x ices/67019.sh
It was because `67019.sh` didn't have execute rights. Glacier did run scripts as if you entered `./script.sh` in your prompt, but that requires execute rights on the script. So I changed glacier to run `bash script.sh`, which only requires read rights. Also, shouldn't glacier emit the `+nightly` flag to rustc?
Thanks, that error was confusing at first. Edit: I did chmod +x anyway. |
Yeah that's fine, a good idea actually since a plain For |
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.
Thanks!
Thanks for reviewing ^^ |
It's a bit hacky because the ICE from rust-lang/rust#67019 needs compiler flags and I don't know of a way to provide that from within a .rs file.