📄 make-cray.include
字号:
# Make include file for ARCH=crayU_ARCH = _$(ARCH) # debug flags for C compiler OPTFLAGS_D = -g# optimized flags for C compilerOPTFLAGS_O = -O -h nofastmd,aggress# default flags for C compiler (usually optimized)OPTFLAGS = $(OPTFLAGS_O)# C compilerCC = cc# C linkerCLINKER = $(CC)# debug flags for Fortran compilerFOPTFLAGS_D = -Wf"-ez"# optimized flags for Fortran compilerFOPTFLAGS_O = -Wf"-o aggress"# default flags for Fortran compiler (usually optimized)FOPTFLAGS = $(FOPTFLAGS_O)# Fortran compilerF77 = cf77 # Fortran LinkerFLINKER = $(F77)# C/Fortran linkerCFLINKER = cf77# debug linker flagsLFLAGS_D = -g# optimized linker flagsLFLAGS_O = # default linker flags (usually optimized)LFLAGS = $(LFLAGS_O)# where to get cppCPP = /usr/lib/gpp# CPP flagsCPP_FLAGS = -DPRISM_CRAY# archiver to create librariesAR = ar clr# how to do ranlib on librariesRANLIB = test -f# CPP options for codePRISM_DEFINES = -DPRISM_CRAY -DSTRAS_FORTRAN_ADD -DSTRAS_FORTRAN_SUB#PRISM_DEFINES = -DPRISM_CRAY -DSTRAS_BLAS_ADD -DSTRAS_BLAS_SUB# default uses STRAS_POINTER_ADD and STRAS_POINTER_SUB#PRISM_DEFINES = -DPRISM_CRAY# how to link in BLAS libraryBLAS_LIB = $(PRISM_BLAS_LIB)# how to link in LAPACK libraryLAPACK_LIB = $(PRISM_LAPACK_LIB)# path for librariesLIB_PATH = # what libraries to link inLIB_LIST = -lm# what clock to useOBJS_CLOCK = # machine specific objects that are neededOBJS_MACHINE =
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -