Brian Ward
Brian Ward
@SteveBronder your last commit here deleted a variable that seems to still be used elsewhere. It would be nice to get this into 2.35 if you can take a quick...
I believe the only time cmdstan would write files is the first time a compilation is performed (assuming none of the source files are changed)
That might help, but I'm not 100% sure. Our Makefiles definitely aren't set up with read-only setups in mind
Depending by what you mean by centralized, this is likely a use case which would be ill supported by the current CmdStan build process. Because the build is entirely in-tree,...
If your shared environment has TBB installed, you can ask CmdStan to use that instead using something like this in `make/local` (this is probably under-documented) ```makefile TBB_CXX_TYPE=gcc TBB_INTERFACE_NEW=true # if...
Yes, SUNDIALS is statically linked by default in CmdStan. You could do something similar if you wanted to also use a vendor-provided version of SUNDIALs, though (see https://github.com/stan-dev/math/pull/2861)
We already have something like this (it’s even called `info`, #1010), but it’s definitely not the most informative.
Model code might not always be desired (I'm imagining a situation where someone wants to provide a proprietary package without the source), but we could have it as an option,...
I thought ccache only cached object files? If so, the fact that we precompile main.o and have a precompiled header is probably already as good as you can get, but...
@andrjohns did you have a chance to see if this made a difference?