Re: [R-pkg-devel] Rcpp with clang++ -stdlib=libc++ ?

2020-09-12 Thread Kevin Ushey
My understanding is that many Linux OSes package the clang compiler, the libc++ standard library, and the headers used by the libc++ standard library separately. To install those headers, you likely need (e.g. on Ubuntu): sudo apt install libc++-dev libc++abi-dev to be able to build and compi

Re: [R-pkg-devel] failing on win and debian -- because of new submission?

2020-09-12 Thread Max Turgeon
Hi Simit, There's actually more happening in the NOTE than simply a reminder that this is a new submission. You get a message about a possibly invalid URL because of a redirect, and you also get this: Package has a VignetteBuilder field but no prebuilt vignette index. You may get this message

Re: [R-pkg-devel] failing on win and debian -- because of new submission?

2020-09-12 Thread Jeff Newmiller
I would not read anything into this. Does [1] help? [1] https://jef.works/blog/2018/06/18/get-your-package-on-cran-in-10-steps/ On September 12, 2020 1:58:15 PM PDT, Simit Patel wrote: >hello, > >  >i am submitting my first package for CRAN, but am failing pre-check on >windows and debian. below

[R-pkg-devel] failing on win and debian -- because of new submission?

2020-09-12 Thread Simit Patel
hello,   i am submitting my first package for CRAN, but am failing pre-check on windows and debian. below is an excerpt from the failure message:   package wordpressr_0.1.0.tar.gz does not pass the incoming checks automatically, please see the following pre-tests: Windows:

Re: [R-pkg-devel] Rcpp with clang++ -stdlib=libc++ ?

2020-09-12 Thread Dirk Eddelbuettel
Hi Jens, On 11 September 2020 at 21:00, Dr. Jens Oehlschlägel wrote: | I can compile a package under clang++ with -stdlib=libstdc++, but with -stdlib=libc++ I get | | " | In file included from /home/jo/R/x86_64-pc-linux-gnu-library/4.0/Rcpp/include/Rcpp/r/headers.h:67: | /home/jo/R/x86_64-pc

Re: [R-pkg-devel] Fixing travis build fail due to fftwtools fatal error (fftw3.h: No such file or directory)

2020-09-12 Thread Karim Rahim
Hello, There is only one fftw3 tar.gz file that I see. http://www.fftw.org/download.html Once built it provides headers and static libraries to use fftw3 in cpp. For an example of how it's used in cpp see: http://www.fftw.org/fftw3_doc/Complex-One_002dDimensional-DFTs.html#Complex-One_002dDime