Skip to content

Commit 5c9505f

Browse files
committed
CRAN release 4.4.4
1 parent 0886bd5 commit 5c9505f

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: RcppParallel
22
Type: Package
33
Title: Parallel Programming Tools for 'Rcpp'
4-
Version: 4.4.3-9000
4+
Version: 4.4.4
55
Authors@R: c(
66
person("JJ", "Allaire", role = c("aut"), email = "jj@rstudio.com"),
77
person("Romain", "Francois", role = c("aut", "cph")),

inst/NEWS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
RcppParallel 4.4.4
2+
------------------------------------------------------------------------
3+
* Fixed an issue when compiling RcppParallel with clang-9 on Fedora
4+
15
RcppParallel 4.4.3
26
------------------------------------------------------------------------
37

src/Makevars.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ifeq ($(OS), Windows_NT)
66
TBB_COPY_PATTERN=tbb*.dll
77

88
MAKEFLAGS = -j1
9-
MAKE = make -e
9+
MAKE = make -e -s
1010
MAKE_CMD = \
1111
CYGWIN=nodosfilewarning \
1212
CONLY="@WINDOWS_CC@" \
@@ -33,7 +33,7 @@ else
3333
endif
3434
endif
3535

36-
MAKE += -e
36+
MAKE += -e -s
3737
MAKE_CMD = \
3838
CONLY="@CC@" \
3939
CPLUS="@CXX11@" \

tools/config/cleanup.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Clean up files generated during configuration here.
22
# Use 'remove_file()' to remove files generated during configuration.
3-
3+
unlink("src/tbb/build/lib_release", recursive = TRUE)
44

0 commit comments

Comments
 (0)