The R Project SVN R

Rev

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

Rev 75808 Rev 76752
Line 103... Line 103...
103
MKDIR=mkdir
103
MKDIR=mkdir
104
NM=$(BINPREF)nm
104
NM=$(BINPREF)nm
105
RANLIB=$(BINPREF)ranlib
105
RANLIB=$(BINPREF)ranlib
106
RESCOMP=$(BINPREF)windres $(RC_ARCH)
106
RESCOMP=$(BINPREF)windres $(RC_ARCH)
107
 
107
 
-
 
108
## If the Fortran compiler is gfortran >= 7, add
-
 
109
## -fno-optimize-sibling-calls to avoid recent gfortran optimizations
-
 
110
## that break with LAPACK/BLAS-style passing of length-1 strings
-
 
111
## (without hidden arguments giving their lengths).
-
 
112
GFVER = $(shell echo "__GNUC__" | $(F77) -E -P -)
-
 
113
GF7OPTS =
-
 
114
ifneq ($(GFVER),"")
-
 
115
GF7OPTS = $(shell [ $(GFVER) -ge 7 ] && echo "-fno-optimize-sibling-calls")
-
 
116
endif
-
 
117
 
108
# as set by make
118
# as set by make
109
RM=rm -f
119
RM=rm -f
110
SED=sed
120
SED=sed
111
SORT=sort
121
SORT=sort
112
 
122