Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Rcpp is failing to install for me. When I run the following within the R console (R 2.15.1 on Mac 10.8):

install.packages("Rcpp")

I get the following error:

/usr/bin/clang++ -I/usr/local/Cellar/r/2.15.1/R.framework/Resources/include \
       -DNDEBUG -I../inst/include/ -I/usr/local/Cellar/readline/6.2.4/include \
       -isystem /usr/local/include -I/opt/X11/include    -fPIC  -Os -w -pipe - \
       march=native -Qunused-arguments -mmacosx-version-min=10.8  \
       -c exceptions.cpp -o exceptions.o

exceptions.cpp:82:14: fatal error: 'bits/exception_defines.h' file not found 
#include <bits/exception_defines.h>
        ^
1 error generated.
make: *** [exceptions.o] Error 1
ERROR: compilation failed for package ‘Rcpp’

What am I doing wrong?

share|improve this question
Dirk's as knowledgeable as they come, but you might try posting to the r-sig-mac mailing list to see if Simon has something to suggest. – Carl Witthoft Aug 11 '12 at 13:05

2 Answers

Which version of Rcpp? This is fixed in SVN:

2012-07-06  Dirk Eddelbuettel  <edd@debian.org>

        * inst/include/Rcpp/config.h: In order to not attempt to include
        exception_defines.h if on OS X (as the clang runtime may not have
        predictable access to g+++ headers providing these), do not define
        RCPP_HAS_DEMANGLING which is used in src/exceptions.cpp

and was discussed on the rcpp-devel list.

I tried to accomodate OS X and clang >= 3.0, but the interaction of clang and g++ is a little tricky. Try to fetch the file from SVN or just edit the section in it to yield

#ifdef __GNUC__
  // from http://sourceforge.net/apps/mediawiki/predef/index.php?\  
  //              title=Operating_Systems#MacOS
  #ifndef __APPLE__ 
    #ifndef __MACH__
      #define RCPP_HAS_DEMANGLING
    #endif
  #endif
#endif

which turns this off for all OS X instances.

share|improve this answer
I encountered the same error when trying to install Rcpp 0.9.13 on a Mac. Rcppp 0.9.13 was released on 2012-06-29, i.e., before the SVN fix. So is the only option here to wait for next release of Rcpp? – edwardw Sep 29 '12 at 16:56
Edit the file as shown in my answer, then install. Else, fetch the tarball from R-Forge, or do a SVN checkout. Else you will have to wait for 0.9.14, which should come out one of these days/weeks/months. – Dirk Eddelbuettel Sep 29 '12 at 19:10
I'm glad to report that newly released Rcpp 0.9.14 solved the issue. Thanks, Dirk. – edwardw Oct 1 '12 at 6:57
Oh, you're fast and you noticed the new release as it hit CRAN. Meant to mention it here too but you took care of it :) – Dirk Eddelbuettel Oct 1 '12 at 11:45

Sorry not an answer but doesn't fit in a comment..

I've edited the config.h file (from the tar.gz package source), and tarred the directory up again using tar -cfz Rcpp_0.9.13.tar.gz.

I try to use install.packages with a reference to the new tar.gz bundle, but get the following error from R:

ERROR: * installing *source* package ‘Rcpp’ ...
** libs
/usr/bin/clang++ -I/usr/local/Cellar/r/2.15.1/R.framework/Resources/include -DNDEBUG -I../inst/include/ -I/usr/local/Cellar/readline/6.2.4/include -isystem /usr/local/include -I/opt/X11/include    -fPIC  -Os -w -pipe -march=native -Qunused-arguments -mmacosx-version-min=10.8  -c ._Date.cpp -o ._Date.o
._Date.cpp:1:2: error: expected unqualified-id

 ^
._Date.cpp:1:160: error: expected unqualified-id
Mac OS X           2��ATTR��P�Pcom.apple.quarantineq/0001;5026032c;Google\x20Chrome\x20Canary;6454DC63-5D53-475A-AB45-9A68B133C88F
                                                                                                                                                                 ^
._Date.cpp:1:169: error: unknown type name 'Google'
Mac OS X           2��ATTR��P�Pcom.apple.quarantineq/0001;5026032c;Google\x20Chrome\x20Canary;6454DC63-5D53-475A-AB45-9A68B133C88F
                                                                                                                                                                          ^
._Date.cpp:1:175: error: expected unqualified-id
Mac OS X           2��ATTR��P�Pcom.apple.quarantineq/0001;5026032c;Google\x20Chrome\x20Canary;6454DC63-5D53-475A-AB45-9A68B133C88F
                                                                                                                                                                                ^
._Date.cpp:1:196: error: expected unqualified-id
Mac OS X           2��ATTR��P�Pcom.apple.quarantineq/0001;5026032c;Google\x20Chrome\x20Canary;6454DC63-5D53-475A-AB45-9A68B133C88F
                                                                                                                                                                                                     ^
5 errors generated.
make: *** [._Date.o] Error 1
ERROR: compilation failed for package ‘Rcpp’
share|improve this answer
You seem to have messed up the header file. Try the 'download' link at the R-forge page, or just edit config.h by hand. – Dirk Eddelbuettel Aug 11 '12 at 12:21
Thanks for your help, but i'm not sure what else to try. I've copied the config.h file from svn on-top of the one I downloaded from the R-forge page. Then created the tarball with the fix included, and tried to install from that. That is when I get this error. – cjroebuck Aug 12 '12 at 8:19
Please re-read my previous comment. Edit the file config.h by hand, you will have downloaded garbage with HTML markup and whatnot. If you cannot edit by hand, download the current Rcpp 0.9.13.1 snapshot tarball from R-Forge. – Dirk Eddelbuettel Aug 12 '12 at 14:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.