Chris Cole

Results 23 comments of Chris Cole

I get the same error on Windows 10 R 4.0.3 and I haven't specified the nodejs_path. `buildPath

Any update on this issue? It's still happening on Catalina and R 4.0.4.

Saw this tool as highly recommended, but can't even open it.

@Floppy thanks. The right-click allowed me to run it. Nice trick! Thanks.

The point is that this isn't brew problem, as far as I can tell. QuantLib is installed with the correct flags as per the requirements of RQuantLib. Step 4 on...

Just realised that was using gcc v8 from Homebrew. Trying again with the default clang in macOS also has loads of deprecation warnings e.g. ``` In file included from zero.cpp:20:...

Damn, I forgot the rest of it., sorry. The compilation still failed. > installing to /Users/ccole/Library/R/4.0/library/00LOCK-RQuantLib/00new/RQuantLib/libs > ** R > ** data > ** demo > ** inst > **...

I couldn't let this go ;) Have compiled all three (QuantLib, Rcpp and RQuantlib) from source. No change. Expanding errors to include last compile step: ``` clang++ -mmacosx-version-min=10.13 -std=gnu++11 -dynamiclib...

Recompiled Boost from source with same outcome :( The QuantLib examples run fine as do Rcpp calls. Can you elaborate further on the "Write a five liner with a QuantLib...

Created this `hello.cpp` code: ``` #include #include // [[Rcpp::export]] void hello() { Rprintf("Hello, quantlib world!\n"); } ``` And then ran it as: ``` library(Rcpp) sourceCpp('hello.cpp') hello() ``` Got a whole...