The R Project SVN R

Rev

Rev 52549 | Rev 52585 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 52549 Rev 52568
Line 1... Line 1...
1
#-*- Makefile -*-
1
#-*- Makefile -*-
2
 
2
 
3
## This is only used when building R itself but it does customize
3
## This is only used when building R itself but it does customize
4
## etc/Makeconf using LOCAL_SOFT, BINPREF[64], IMPLIB and R_ARCH
4
## etc/*/Makeconf using LOCAL_SOFT, BINPREF[64], SYMPAT64, IMPLIB and R_ARCH
5
 
5
 
6
## =========== configuration macros for building packages ================
6
## =========== configuration macros for building packages ================
7
# Absolute path to '/usr/local' software collection.  The versions used
7
# Absolute path to '/usr/local' software collection.  The versions used
8
# on CRAN can be found at
8
# on CRAN can be found at
9
# http://www.stats.ox.ac.uk/pub/Rtools/goodies/local.zip
9
# http://www.stats.ox.ac.uk/pub/Rtools/goodies/local.zip
Line 35... Line 35...
35
# We normally link directly against DLLs, 
35
# We normally link directly against DLLs, 
36
# but this macro forces the use of import libs
36
# but this macro forces the use of import libs
37
# Needed if using other compilers, including some versions of MinGW-w64
37
# Needed if using other compilers, including some versions of MinGW-w64
38
# USE_IMPLIBS = YES
38
# USE_IMPLIBS = YES
39
 
39
 
40
# Some of the compilers are in fact cross-compilers and have prefixes
40
# Some of the toolchains are in fact cross-compilers and have prefixes
41
# prefix for 32-bit compiler, i686-w64-mingw32- for MinGW-w64's
41
# prefix for 32-bit, i686-w64-mingw32- for MinGW-w64's
42
BINPREF =
42
BINPREF =
43
# prefix for 64-bit compiler
43
# prefix for 64-bit: usually this, but not for native x64 builds.
44
BINPREF64 = x86_64-w64-mingw32-
44
BINPREF64 = x86_64-w64-mingw32-
45
 
45
 
46
# 32- or 64-bit Windows?
46
# 32- or 64-bit Windows?
47
WIN = 32
47
WIN = 32
48
 
48