📄 make.altix
字号:
############################################################################## Program: SuperLU_DIST## Module: make.inc## Purpose: Top-level Definitions## Creation date: April 10, 2006 version 2.0## Modified: November 1, 2007 version 2.1############################################################################### The machine (platform) identifier to append to the library names#PLAT = _altix## The name of the libraries to be created/linked to#DSuperLUroot = $(HOME)/SuperLU_codes/SuperLU_DIST_2.2DSUPERLULIB = $(DSuperLUroot)/lib/libsuperlu$(PLAT).aMKLHOME = /usr/common/intel/mkl/8.1.014BLASDEF = -DUSE_VENDOR_BLASBLASLIB = -L${MKLHOME}/lib/64 -lmkl_ipf -lguidePARMETISLIB = -L$(HOME)/Codes/ParMetis-3.1 -lparmetisMETISLIB = -lmetisLIBS = $(DSUPERLULIB) $(BLASLIB) $(PARMETISLIB) $(METISLIB) \ -lmpi -lm -L/usr/common/intel/fc/8.1.029/lib -lifcore## The archiver and the flag(s) to use when building archive (library)# If your system has no ranlib, set RANLIB = echo.#ARCH = arARCHFLAGS = crvRANLIB = ranlib######################################################################## C compiler setupCC = iccISA = -ftz -mp# CFLAGS should be set to be the C flags that include optimizationCFLAGS = $(ISA) -O3 -DDEBUGlevel=0 -DPRNTlevel=0## NOOPTS should be set to be the C flags that turn off any optimizationNOOPTS = $(ISA) -O0############################################################################# FORTRAN compiler setupFORTRAN = ifortFFLAGS = $(CFLAGS)F90FLAGS = -r8 -check all -save -Dmpi -ftz############################################################################LOADER = iccLOADOPTS = $(CFLAGS)############################################################################## C preprocessor defs for compilation (-DNoChange, -DAdd_, or -DUpCase)## Need follow the convention of how C calls a Fortran routine.#CDEFS = -DAdd_
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -