-
Notifications
You must be signed in to change notification settings - Fork 0
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
[WIP] [R-package] R-package installation with CRAN toolchain #15
Conversation
211826a
to
3561eb0
Compare
From
|
Some possible models from |
c2fea96
to
0fe0b1d
Compare
found the use of https://github.com/kthohr/BMR/pull/43/files https://cran.r-project.org/doc/manuals/r-release/R-exts.html#The-DESCRIPTION-file |
dealing with this issue:
|
nice example of a Per "Writing R Extensions"
|
After banging my head against it for a while, I found that it is not possible to pass https://community.rstudio.com/t/configure-args-option-on-windows/20320/4 That isn't documented anywhere that I have found, but Jim Hester is an expert and also you can see it in the R source code: https://github.com/wch/r-source/blob/8bc3a6f4b0c2fca3195cac427e9ad8b4448eaa73/src/library/tools/R/install.R#L670-L697 I think the only way we can get around it might be with environment variables. I'm testing that now. |
Notes on non-portable flags:
|
… into feat/portable-install
This pull request has been automatically locked since there has not been any recent activity since it was closed. To start a new related discussion, open a new issue at https://github.com/microsoft/LightGBM/issues including a reference to this. |
In this PR, I'm testing a CRAN-compliant installation setup for the R package. We can't assume the presence of
cmake
and hopefully don't need it.Relevant links: