1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213
|
# defualt compiler unset
define(COMPILER = "")
# check whether user has Makevars file that might cause trouble
makevars <- Sys.getenv("R_MAKEVARS_USER", unset = "~/.R/Makevars")
if (file.exists(makevars)) {
contents <- readLines(makevars, warn = FALSE)
pattern <- "^(PKG_CPPFLAGS|PKG_CXXFLAGS)\\s*="
bad <- grep(pattern, contents, perl = TRUE, value = TRUE)
if (length(bad)) {
text <- c(
"",
sprintf("NOTE: '%s' contains variable declarations incompatible with RcppParallel:", makevars),
"",
paste0("\t", bad),
"",
"Makevars variables prefixed with 'PKG_' should be considered reserved for use by R packages.",
""
)
writeLines(text, con = stdout())
}
}
# Figure out the appropriate CXX prefix for the current
# version of R + configuration.
cxx <- "/usr/bin/c++"
candidates <- c("CXX11", "CXX1X", "CXX")
for (candidate in candidates) {
value <- r_cmd_config(candidate)
if (!is.null(value)) {
if (any(grepl("icpc", value))) {
define(COMPILER = "icc")
}
cxx <- candidate
break
}
}
# work around issue with '-Werror=format-security' being specified without
# a prior '-Wformat', which makes gcc angry
cxxflags <- read_r_config(sprintf("%sFLAGS", cxx), envir = NULL)[[1]]
broken <-
grepl(" -Werror=format-security ", cxxflags) &&
!grepl(" -Wformat ", cxxflags)
if (broken)
cxxflags <- gsub("-Werror=format-security", "-Wformat -Werror=format-security", cxxflags)
# avoid including /usr/local/include, as this can cause
# RcppParallel to find and use a version of libtbb installed
# there as opposed to the bundled version
cppflags <- read_r_config("CPPFLAGS", envir = NULL)[[1]]
cppflags <- sub("(?: )?-I/usr/local/include", "", cppflags)
cppflags <- sub("(?: )?-I/opt/homebrew/include", "", cppflags)
# define the set of flags appropriate to the current
# configuration of R
switch(
cxx,
CXX11 = define(
CC = "$(CC)",
CPPFLAGS = cppflags,
CXX11 = "$(CXX11)",
CXX11FLAGS = cxxflags,
CXX11STD = "$(CXX11STD)",
CXX11PICFLAGS = "$(CXX11PICFLAGS)"
),
CXX1X = define(
CC = "$(CC)",
CPPFLAGS = cppflags,
CXX11 = "$(CXX1X)",
CXX11FLAGS = cxxflags,
CXX11STD = "$(CXX1XSTD)",
CXX11PICFLAGS = "$(CXX1XPICFLAGS)"
),
CXX = define(
CC = "$(CC)",
CPPFLAGS = cppflags,
CXX11 = "$(CXX)",
CXX11FLAGS = cxxflags,
CXX11STD = "-std=c++0x",
CXX11PICFLAGS = "-fPIC"
),
stop("Failed to infer C / C++ compilation flags")
)
# define special flags for Windows
db <- configure_database()
info <- as.list(Sys.info())
if (info[["sysname"]] == "Windows") {
# for older versions of R, we need to resolve the
# 'true' path to the C / C++ compiler; we do so
# via the cygpath utility here
fmt <- if (getRversion() < "4.2.0") {
cygpath <- nzchar(Sys.which("cygpath"))
if (cygpath) "$(shell cygpath -m \"%s\")" else "%s"
} else {
"%s"
}
define(
WINDOWS_CC = sprintf(fmt, db$CC),
WINDOWS_CXX11 = sprintf(fmt, db$CXX11)
)
}
# use c++0x for compatibility with older compilers
if (getRversion() < "4.0") {
define(STDVER = "stdver=c++0x")
} else {
define(STDVER = "")
}
# on Solaris, check if we're using gcc or g++
if (Sys.info()[["sysname"]] == "SunOS") {
cxx <- r_cmd_config("CXX")
version <- system(paste(cxx, "--version"), intern = TRUE)
for (compiler in c("gcc", "g++")) {
if (any(grepl(compiler, version, fixed = TRUE))) {
define(COMPILER = "gcc")
}
}
}
# try and figure out path to TBB
tbbRoot <- Sys.getenv("TBB_ROOT", unset = NA)
tbbLib <- Sys.getenv("TBB_LIB", unset = NA)
tbbInc <- Sys.getenv("TBB_INC", unset = NA)
# check TBB_ROOT first if defined
if (!is.na(tbbRoot)) {
if (is.na(tbbLib)) {
multiDir <- system("dpkg-architecture -qDEB_HOST_MULTIARCH", intern = TRUE)
tbbLib <- paste("/usr/lib/", multiDir, sep = "")
}
if (is.na(tbbInc)) {
tbbInc <- file.path(tbbRoot, "include")
}
}
# if TBB_LIB is defined, guess TBB_INC
if (!is.na(tbbLib) && is.na(tbbInc)) {
tbbIncCandidate <- file.path(tbbLib, "../include")
if (file.exists(tbbIncCandidate)) {
tbbInc <- normalizePath(tbbIncCandidate)
}
}
# if TBB_LIB and TBB_INC are still not defined, try auto-detecting
tryAutoDetect <-
.Platform$OS.type == "unix" &&
Sys.getenv("TBB_AUTODETECT", unset = "FALSE") == "TRUE" &&
is.na(tbbLib) &&
is.na(tbbInc)
if (tryAutoDetect) {
sysInfo <- as.list(Sys.info())
homebrewPrefix <- if (sysInfo$sysname == "Darwin") {
"/opt/homebrew"
} else {
"/usr/local"
}
tbbLibSearch <- if (sysInfo$sysname == "Darwin") {
file.path(homebrewPrefix, "opt/tbb/lib/libtbb.dylib")
} else {
Sys.glob(c(
"/usr/*/libtbb.so",
"/usr/*/*/libtbb.so",
"/usr/*/*/*/libtbb.so"
))
}
tbbIncSearch <- if (sysInfo$sysname == "Darwin") {
file.path(homebrewPrefix, "opt/tbb/include/tbb")
} else {
Sys.glob(c(
"/usr/include/tbb.h",
"/usr/include/*/tbb.h"
))
}
if (length(tbbLibSearch) &&
length(tbbIncSearch) &&
file.exists(tbbLibSearch[[1L]]) &&
file.exists(tbbIncSearch[[1L]]))
{
tbbLib <- dirname(tbbLibSearch[[1L]])
tbbInc <- dirname(tbbIncSearch[[1L]])
}
}
# now, define TBB_LIB and TBB_INC as appropriate
define(
TBB_LIB = if (!is.na(tbbLib)) tbbLib else "",
TBB_INC = if (!is.na(tbbInc)) tbbInc else ""
)
|