-
Notifications
You must be signed in to change notification settings - Fork 80
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
Unknown type name 'uuid_t' #256
Comments
I'm seeing the same error when installing It might be an Rcpp issue. Not sure how to report it, though. |
This is a duplicate of #249, which is RcppCore/Rcpp#1046. It is fixed in the devel version of Rcpp, hopefully the Rcpp developers will release a patch version to CRAN soon which fixes the issue. |
from @jimhester reply, found the commit which contains the fix. for quick fix: I tried the above and it worked. |
I'm trying to build
fs
version 1.3.2.9000 on macOS 10.14.5. R is at version 3.6.3 (installed via Homebrew) and clang++ is 10.0.1 (clang-1001.0.46.4).Compilation fails with the following:
I've omitted other error messages for brevity, but they all mention the
uuid_t
type.The problem appears to be related to Rcpp. Indeed, I modified
id.cc
as follows:Simply put, I have moved the
Rcpp.h
include after all others. Originally, it appeared on the fist line of the file. This change is sufficient to make the compilation succeed.The text was updated successfully, but these errors were encountered: