-
Notifications
You must be signed in to change notification settings - Fork 761
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
Bugfix for gcc-493 #1155
Bugfix for gcc-493 #1155
Conversation
Avoids cluttering the test output.
678dc1e should be ok to merge. It got a clean check from win-builder (http://win-builder.r-project.org/ZrVV35IPB27C/00check.log) |
@@ -131,21 +133,53 @@ setup_rtools <- function(cache = TRUE, debug = FALSE) { | |||
TRUE | |||
} | |||
|
|||
scan_path_for_rtools <- function(debug = FALSE) { | |||
scan_path_for_rtools <- function( | |||
debug = FALSE, |
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.
Can you indent these lines please?
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.
How much indentation? Just one additional level or to line up with function
?
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.
I like to have arguments line up with the (
in function(
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.
Great that is what I did 😄!
LGTM. Can you add a bullet to NEWS? Let me know once you merge, and I'll release |
Ok now merged, can be released whenever you are ready. |
I ended up special casing the situation on win-builder as it seems like a reasonable layout to support. The old toolchain installs to
Rtools/gcc-4.6.3
so installing the new on toRtools/gcc-4.9.3
does make some sense even if it is not the default installation location.This also includes some cleanup, - 1b0fc66 suppresses the output of
create()
used in the infrastucture tests so it won't clutter the output.I am mainly opening this as a PR to make sure it is working before merging.