makefile.includeaix
来自「a software code for computing selected e」· INCLUDEAIX 代码 · 共 92 行
INCLUDEAIX
92 行
# where are the libraries for the Linux platform located# note that the platform will be added to this path!PLATFORM=AIXxlf90#PLATFORM=aix# name of the specific PARDISO libraryPARDISOLIB=libpardiso_P4AIX51_64.so# -------------------------------# C-preprocessor used for FORTRAN source codesCPP=cpp# preprocessor optionsCPPFLAGS=-P -w# -------------------------------# which C-compiler do we useCC=xlc# C compiler optionsCCFLAGS= -O4 -qcpluscmt -q64 -qipa#CCFLAGS= -g -qcpluscmt -q64 -qipa# -------------------------------# 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__# IRIX: -D__UNDERSCORE__# HP UX:# AIX: noneFORTRANNAMES=# decide whether integer should be 32 bit or 64 bit#LONGINTEGER=-D_LONG_INTEGER_LONGINTEGER=# -------------------------------# which fortran compiler is usedFF=xlf90# its flagsFFFLAGS= -O4 -q64 -qipa=inline=auto:level=2 -qfixed#FFFLAGS= -g -q64 -qipa=inline=auto:level=2 -qfixed# -------------------------------# Preprocessor + FORTRAN CompilerFCOMPILE=$(FF) $(FFFLAGS) -I$(INCDIR) -WF,$(ARITHMETIC) -WF,$(LONGINTEGER) -c -o $@ $*.F# -------------------------------# which linker do we useLD=$(FF)# its flagsLDFLAGS=-q64 # -------------------------------# how do we create a libraryAR=ar# its flagsARFLAGS=-X64 ru# -------------------------------# how to update the libraryRL=ranlib# its flagsRLFLAGS=-X64# -------------------------------# miscelaneous abbreviationsCAT=catRM=rmMV=mvCP=cpCPLN=cp
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?