-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fails testing - Library not loaded: libboost_regex.dylib #10
Comments
Yeah, I've been encountering a similar issue, and I'm not sure why. I'll try to look into it next week. |
I have an update. I was able to install and load the package after adding symbolic links for |
NP! Hmn. Is it a problem with the makefile? i.e., should this lib be looking in more places? I'm not sure how much we can modify Rcpp imports, unfortunately, but if I can I will. |
We're at the edges of my programming ability here, so I'm not sure how much I can help. Rcpp loads fine on my machine and did before this, so the way it does things is probably okay. I did notice this section in the R Installation and Administration manual (6.3.6):
I I don't know the standard install paths for boost libraries, but at the moment it seems that one either needs those two lib files in the R fallback path (above) or have them added to the |
Would you rather have it (a) work on Windows or (b) have full compatibility with the range of regexes used? Basically it's not possible (or: exceedingly hard) to integrate with boost regex on every platform, but C++11 has regex support and now works there, so I can fall back to that - the problem being that it uses different syntax (EMACscript versus PCRE). |
Trying to get my head wrapped around this again. Could you use the BH package as a dependency? The README list of available libraries doesn't include |
Alas, no - it needs linking (which is system-dependent) to work. On Monday, 25 July 2016, Benjamin Skinner [email protected] wrote:
|
Reading the BH info a little more closely, I see that now. That's unfortunate. While I personally don't care that much about Windows support, it's probably better to go with (b). |
I'm using OS X 10.11.3 (El Capitan) and calling R from the Terminal.
libboost_regex.dylib
exists in/usr/local/lib
. All other dependencies are installed (I believe). Here's the output.The text was updated successfully, but these errors were encountered: