We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bdbd968 commit dd22b2bCopy full SHA for dd22b2b
1 file changed
src/Makevars
@@ -1,6 +1,4 @@
1
2
-CXX_STD = CXX11
3
-
4
PKG_CPPFLAGS += -I../inst/include/
5
6
ifeq ($(OS), Windows_NT)
@@ -10,16 +8,23 @@ ifeq ($(OS), Windows_NT)
10
8
11
9
# Extra PATH entry for gcc (required by TBB)
12
GCC_PATH = $(shell cygpath $(dir $(CC))):
+
+ CXX_STD = CXX11
13
14
else
15
16
UNAME := $(shell uname)
17
TBB_COPY_PATTERN=libtbb.*
18
ifeq ($(UNAME), Darwin)
19
USE_TBB=Mac
20
+ # We don't set this on OS X because it caused build failures on
21
+ # pre-Mavericks R toolchains (it was originally put in to prevent
22
+ # warnings on a Linux toolchain so isn't needed on OS X anyway)
23
+ # CXX_STD = CXX11
24
endif
25
ifeq ($(UNAME), Linux)
26
USE_TBB=Linux
27
28
29
# Note: regular MinGW not supported
30
0 commit comments