-
Notifications
You must be signed in to change notification settings - Fork 49
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
Compile #81
Conversation
R/load.r
Outdated
pkgbuild::compile_dll(path, force = TRUE, quiet = quiet) | ||
} else if (identical(compile, NA)) { | ||
pkgbuild::compile_dll(path, quiet = quiet) | ||
} else if (isFALSE(compile)) { |
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.
isFALSE()
is only available in R >= 3.5, so we would need an implementation of it in utils or a backport.
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 used identical()
which should be fine for this usage.
@jimhester should be good for another review now. |
Thanks! |
Includes #80. I'm open to ideas for testing