File tree Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 1
1
2
2
## RcppParallel 5.1.5 (UNRELEASED)
3
3
4
+ * Fixed an issue where setting ` TBB_ROOT ` (or ` TBB_INC ` / ` TBB_LIB ` ) would
5
+ copy rather than symlink the associated libraries. (#161 )
6
+
4
7
## RcppParallel 5.1.4
5
8
6
- - Fixed an issue causing client packages of RcppParallel to fail to compile
9
+ * Fixed an issue causing client packages of RcppParallel to fail to compile
7
10
on Solaris.
8
11
9
12
## RcppParallel 5.1.3
Original file line number Diff line number Diff line change 14
14
# '
15
15
# ' For additional documentation, see the package website at:
16
16
# '
17
- # ' <https://rcppcore.github.io/RcppParallel>
17
+ # ' <https://rcppcore.github.io/RcppParallel/ >
18
18
# '
19
19
# '
20
20
# ' @name RcppParallel-package
Original file line number Diff line number Diff line change 17
17
dir.create(libsDest , recursive = TRUE , showWarnings = FALSE )
18
18
file.copy(files , libsDest , overwrite = TRUE )
19
19
20
- # copy tbb
21
- # TODO: use 'dest' library directory once rstan is updated
22
- tbbDest <- paste0(" ../inst/ lib" , R_ARCH )
20
+ # copy tbb (NOTE: do not use inst/ folder as R will resolve symlinks,
21
+ # behavior which we do _not_ want here!)
22
+ tbbDest <- file.path( R_PACKAGE_DIR , paste0(" lib" , R_ARCH ) )
23
23
dir.create(tbbDest , recursive = TRUE , showWarnings = FALSE )
24
24
25
25
# check for bundled vs. system tbb
You can’t perform that action at this time.
0 commit comments