⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile.includeintelamd64_long

📁 a software code for computing selected eigenvalues of large sparse symmetric matrices
💻 INCLUDEINTELAMD64_LONG
字号:
# where are the libraries for the Linux platform located# note that the platform will be added to this path!PLATFORM=OPT64Yifort#PLATFORM=intelAMD64_long# -------------------------------# C-preprocessor used for FORTRAN source codesCPP=/opt/intel/cce/9.0/bin/icc# preprocessor optionsCPPFLAGS=-E# -------------------------------# which C-compiler do we useCC=/opt/intel/cce/9.0/bin/icc# C compiler optionsCCFLAGS= -O3#CCFLAGS= -g# -------------------------------# switch for names alias of fortran routines# -D__UNDERSCORE__   use this, if a fortran routine say "daxpy" has to be #                    called from C using the name "daxpy_"# -D__CAPS__         use this, if a fortran routine say "daxpy" has to be#                    called from C using the name "DAXPY"# -D__2UNDERSCORES__ use this, if a fortran routine say "daxpy" has to be #                    called from C using the name "daxpy__"# You can combine __CAPS__ with either __UNDERSCORE__ or __2UNDERSCORES__# to obtain names like "DAXPY_" or "DAXPY__"# SOLARIS OS:      -D__UNDERSCORE__# Red Hat Linux:   -D__UNDERSCORE__# SGI-Linux:       -D__UNDERSCORE__# AIX:             noneFORTRANNAMES=-D__UNDERSCORE__# decide whether integer should be 32 bit or 64 bitLONGINTEGER=-D_LONG_INTEGER_#LONGINTEGER=# -------------------------------# which fortran compiler is usedFF=/opt/intel/fce/9.0/bin/ifort# its flagsFFFLAGS=  -O3 -fpp -warn all -i8#FFFLAGS=  -g# -------------------------------# Preprocessor + FORTRAN CompilerFCOMPILE=$(FF)  $(FFFLAGS)  -I$(INCDIR) $(ARITHMETIC)  $(LONGINTEGER) -c -o $@ $<#FCOMPILE=rm -rf $*.f;\#         $(CPP) $(CPPFLAGS) -I$(INCDIR) $(ARITHMETIC) $<  >$*.f;\#         $(FF)  $(FFFLAGS)  -I$(INCDIR) -c -o $@ $*.f;\#	 rm -rf $*.f# -------------------------------# which linker do we useLD=$(FF)# its flagsLDFLAGS=# -------------------------------# how do we create a libraryAR=ar# its flagsARFLAGS=ru# -------------------------------# how to update the libraryRL=ranlib# its flagsRLFLAGS=# -------------------------------# miscelaneous abbreviationsCAT=catRM=rmMV=mvCP=cpCPLN=cp

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -