我正在编译R
包并使用以下Makevars
:
PKG_LIBS += $(LAPACK_LIBS) $(BLAS_LIBS) $(FLIBS)
PKG_FCFLAGS += -O3 -ffree-line-length-none -fimplicit-none -mtune=native -ffast-math
但是,当我安装软件包时,我会得到以下信息:
gfortran -O3 -ffree-line-length-none -fimplicit-none -mtune=native -ffast-math -fpic -g -O2
我知道有一些R
因为安全而可能想要保留的标志,但我只是想知道这些标志实际上是在使用中。 -O2
覆盖-O3
?完全使用-ffast-math
吗?