We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49be421 commit 4370a79Copy full SHA for 4370a79
2 files changed
R/tbb.R
@@ -58,14 +58,6 @@ tbbCxxFlags <- function() {
58
return("-DRCPP_PARALLEL_USE_TBB=0")
59
60
flags <- c("-DRCPP_PARALLEL_USE_TBB=1")
61
-
62
- # TBB does not have assembly code for Windows ARM64
63
- # so we need to use compiler builtins
64
- if (TBB_ENABLED && is_windows()) {
65
- if (R.version$arch == "aarch64") {
66
- flags <- c(flags, "-DTBB_USE_GCC_BUILTINS")
67
- }
68
69
70
# if TBB_INC is set, apply those library paths
71
tbbInc <- Sys.getenv("TBB_INC", unset = TBB_INC)
inst/include/RcppParallel.h
@@ -18,9 +18,6 @@
18
#endif
19
20
#if RCPP_PARALLEL_USE_TBB
21
-# if defined(WINNT) && defined(__aarch64__) && !defined(TBB_USE_GCC_BUILTINS)
22
-# define TBB_USE_GCC_BUILTINS 1
23
-# endif
24
# include "RcppParallel/TBB.h"
25
26
0 commit comments