diff --git a/inst/NEWS.Rd b/inst/NEWS.Rd index eb33dbc..2313f48 100644 --- a/inst/NEWS.Rd +++ b/inst/NEWS.Rd @@ -6,7 +6,7 @@ \item Switched to the new \pkg{knncolle} C++ libaries for all implementations. This greatly streamlines the internals and allows downstream packages to re-use the search indices in their own C++ code. -\item Parallelization is now performed using OpenMP (where available) and the standard \code{} library (otherwise). +\item Parallelization is now performed using the standard \code{} library. This avoids the overhead of forking or starting new processes via \pkg{BiocParallel}. \item All \code{*Index} classes have been removed. diff --git a/src/Makevars b/src/Makevars index fb3d30b..1d35f88 100644 --- a/src/Makevars +++ b/src/Makevars @@ -1 +1 @@ -PKG_CXXFLAGS=-I../inst/include +PKG_CPPFLAGS=-I../inst/include