We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 394a729 commit f1c7fd7Copy full SHA for f1c7fd7
1 file changed
man/RcppParallelFlags.Rd
@@ -19,6 +19,10 @@ These functions are typically called from \code{Makevars} as follows:
19
20
\code{PKG_LIBS += $(shell "${R_HOME}/bin/Rscript" -e "RcppParallel::LdFlags()")}
21
22
+On Windows, the flags ensure that the package links with the built-in TBB library.
23
+On Linux and macOS, the output is empty, because TBB is loaded dynamically.
24
+To ensure portability, load \pkg{RcppParallel} before loading your package, e.g. by including \code{importFrom(RcppParallel, RcppParallelLibs)} in your \code{NAMESPACE} file.
25
+See \url{https://github.com/RcppCore/RcppParallel/issues/129} for details.
26
}
27
28
\value{
0 commit comments