| Line 3... |
Line 3... |
| 3 |
## against R.
|
3 |
## against R.
|
| 4 |
##
|
4 |
##
|
| 5 |
## Usage:
|
5 |
## Usage:
|
| 6 |
## R CMD config [options] [VAR]
|
6 |
## R CMD config [options] [VAR]
|
| 7 |
|
7 |
|
| 8 |
## Copyright (C) 2002-2013 The R Core Team
|
8 |
## Copyright (C) 2002-2015 The R Core Team
|
| 9 |
##
|
9 |
##
|
| 10 |
## This document is free software; you can redistribute it and/or modify
|
10 |
## This document is free software; you can redistribute it and/or modify
|
| 11 |
## it under the terms of the GNU General Public License as published by
|
11 |
## it under the terms of the GNU General Public License as published by
|
| 12 |
## the Free Software Foundation; either version 2, or (at your option)
|
12 |
## the Free Software Foundation; either version 2, or (at your option)
|
| 13 |
## any later version.
|
13 |
## any later version.
|
| Line 18... |
Line 18... |
| 18 |
## General Public License for more details.
|
18 |
## General Public License for more details.
|
| 19 |
##
|
19 |
##
|
| 20 |
## A copy of the GNU General Public License is available at
|
20 |
## A copy of the GNU General Public License is available at
|
| 21 |
## http://www.r-project.org/Licenses/
|
21 |
## http://www.r-project.org/Licenses/
|
| 22 |
|
22 |
|
| 23 |
revision='$Revision: 68218 $'
|
23 |
revision='$Revision: 68386 $'
|
| 24 |
version=`set - ${revision}; echo ${2}`
|
24 |
version=`set - ${revision}; echo ${2}`
|
| 25 |
version="R configuration information retrieval script: ${R_VERSION} (r${version})
|
25 |
version="R configuration information retrieval script: ${R_VERSION} (r${version})
|
| 26 |
|
26 |
|
| 27 |
Copyright (C) 2002-2013 The R Core Team.
|
27 |
Copyright (C) 2002-2015 The R Core Team.
|
| 28 |
This is free software; see the GNU General Public License version 2
|
28 |
This is free software; see the GNU General Public License version 2
|
| 29 |
or later for copying conditions. There is NO warranty."
|
29 |
or later for copying conditions. There is NO warranty."
|
| 30 |
|
30 |
|
| 31 |
usage="Usage: R CMD config [options] [VAR]
|
31 |
usage="Usage: R CMD config [options] [VAR]
|
| 32 |
|
32 |
|
| Line 46... |
Line 46... |
| 46 |
|
46 |
|
| 47 |
Variables:
|
47 |
Variables:
|
| 48 |
BLAS_LIBS flags needed for linking against external BLAS libraries
|
48 |
BLAS_LIBS flags needed for linking against external BLAS libraries
|
| 49 |
CC C compiler command
|
49 |
CC C compiler command
|
| 50 |
CFLAGS C compiler flags
|
50 |
CFLAGS C compiler flags
|
| 51 |
CPICFLAGS special flags for compiling C code to be turned into a
|
51 |
CPICFLAGS special flags for compiling C code to be included in a
|
| 52 |
shared library
|
52 |
shared library
|
| 53 |
CPP C preprocessor
|
53 |
CPP C preprocessor
|
| 54 |
CPPFLAGS C/C++ preprocessor flags, e.g. -I<dir> if you have
|
54 |
CPPFLAGS C/C++ preprocessor flags, e.g. -I<dir> if you have
|
| 55 |
headers in a nonstandard directory <dir>
|
55 |
headers in a nonstandard directory <dir>
|
| 56 |
CXX C++ compiler command for C++98 code
|
56 |
CXX compiler command for C++98 code
|
| 57 |
CXXCPP C++ preprocessor
|
57 |
CXXCPP C++98 preprocessor
|
| 58 |
CXXFLAGS C++ compiler flags
|
58 |
CXXFLAGS compiler flags for CXX
|
| 59 |
CXXPICFLAGS special flags for compiling C++ code to be turned into a
|
59 |
CXXPICFLAGS special flags for compiling C++98 code to be included in a
|
| 60 |
shared library
|
60 |
shared library
|
| 61 |
CXX1X C++ compiler command for C++11 code
|
61 |
CXX1X compiler command for C++11 code
|
| 62 |
CXX1XSTD flag used to enable C++11 support
|
62 |
CXX1XSTD flag used with CXX1X to enable C++11 support
|
| 63 |
CXX1XFLAGS C++11 compiler flags
|
63 |
CXX1XFLAGS further compiler flags for CXX1X
|
| 64 |
CXX1XPICFLAGS
|
64 |
CXX1XPICFLAGS
|
| 65 |
special flags for compiling C++11 code to be turned into
|
65 |
special flags for compiling C++11 code to be included in
|
| 66 |
a shared library
|
66 |
a shared library
|
| 67 |
DYLIB_EXT file extension (including '.') for dynamic libraries
|
67 |
DYLIB_EXT file extension (including '.') for dynamic libraries
|
| 68 |
DYLIB_LD command for linking dynamic libraries which contain
|
68 |
DYLIB_LD command for linking dynamic libraries which contain
|
| 69 |
object files from a C or Fortran compiler only
|
69 |
object files from a C or Fortran compiler only
|
| 70 |
DYLIB_LDFLAGS
|
70 |
DYLIB_LDFLAGS
|