We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d4573c1 + 3cba1e2 commit 02b86caCopy full SHA for 02b86ca
R/tbb.R
@@ -75,7 +75,7 @@ tbbCxxFlags <- function() {
75
tbbLdFlags <- function() {
76
77
# shortcut if TBB_LIB defined
78
- tbbLib <- Sys.getenv("TBB_LIB", unset = TBB_LIB)
+ tbbLib <- Sys.getenv("TBB_LINK_LIB", Sys.getenv("TBB_LIB", unset = TBB_LIB))
79
if (nzchar(tbbLib)) {
80
fmt <- "-L%1$s -Wl,-rpath,%1$s -ltbb -ltbbmalloc"
81
return(sprintf(fmt, asBuildPath(tbbLib)))
src/Makevars.in
@@ -40,6 +40,7 @@ else
40
41
ifeq ($(UNAME), Darwin)
42
USE_TBB=Mac
43
+ MAKE_ARGS += arch=$(shell uname -m)
44
endif
45
46
ifeq ($(UNAME), Linux)
0 commit comments