EGARCH
On Sat, Sep 10, 2011 at 3:09 PM, Dirk Eddelbuettel <edd at debian.org> wrote:
Don't do that. ?Some of the Rcpp-related build scripts (such as RcppArmadillo
and hence rugarch) need to ask R where the given package directory is in
order to link against.
If you send unconditional output, it messes this up.
If you really need fortunes displayed, protect it inside
? ?if (interactive()) {
? ? ? ?require(fortunes)
? ? ? ?...
? ?}
Nice catch, thanks! I wish it were included in the default Rprofile.site as an example. Now both rugarch and RcppArmadillo compile just fine. Regards Liviu