Re: [R-pkg-devel] Problems with devtools::build() in R

2023-05-17 Thread Simon Urbanek
This thread went way off the rails and was cross-posted so the solution is on R-SIG-Mac. It was simply wrong Fortran with wrong R - installing latest R and Fortran (from CRAN or https://mac.r-project.org/tools/) is the easiest way to solve the problem. Note that R binaries and tools go togethe

Re: [R-pkg-devel] Are the CRAN macOS builders down?

2023-05-17 Thread Simon Urbanek
Everything should be catched up by now https://mac.r-project.org/reports/status.html FWIW the macOS builds are simply run off published CRAN, so that's why the the sequence is upload -> incoming-tests -> CRAN-src -> check+build -> macos-master -> CRAN-bin where each step may involve cron jobs wh

Re: [R-pkg-devel] Problems with devtools::build() in R

2023-05-17 Thread Ivan Krylov
В Wed, 17 May 2023 11:05:46 -0400 Jarrett Phillips пишет: > `which gfortran` returns > > /usr/local/bin/gfortran I think you ran the other gfortran. Is there a gfortran installation in /opt/gfortran? > libraries: > =/usr/local/gfortran/lib/gcc/aarch64-apple-darwin22/12.2.0/:/usr/local/gfortran

Re: [R-pkg-devel] Problems with devtools::build() in R

2023-05-17 Thread Jarrett Phillips
Hi Ivan, Yes, I can build a Fortran program successfully. cat >hello.f90 < wrote: > Can you build a Fortran program? I.e., does the following work? > > cat >hello.f90 < program hello > print *, 'Hello world' > end program > EOF > gfortran -o hello hello.f90 && ./hello > > Does `which gfortran`

Re: [R-pkg-devel] Problems with devtools::build() in R

2023-05-17 Thread Ivan Krylov
Can you build a Fortran program? I.e., does the following work? cat >hello.f90