2016-02-26 03:03:21 +05:30
########################################################################################
# CMAKE for build the Material subroutine for BVP solution
########################################################################################
2016-03-05 03:13:51 +05:30
cmake_minimum_required ( VERSION 2.8.0 FATAL_ERROR )
2016-03-06 20:00:16 +05:30
# PROJECT DEFINITION HAS TO BE ON TOP
# //The rest of the script relies on it to figure out relative position
2016-02-26 03:03:21 +05:30
2016-03-06 13:58:20 +05:30
#---------------------------------------------------------------------------------------
2016-04-19 04:02:08 +05:30
# Find PETSc from environment
set ( PETSC_DIR $ENV{ PETSC_DIR } )
# if (NOT DEFINED PETSC_DIR)
# message (FATAL_ERROR "PETSC_DIR is not found!")
# endif (NOT DEFINED PETSC_DIR)
2016-03-04 21:48:38 +05:30
2016-03-07 23:13:07 +05:30
exec_program ( mktemp ARGS -d OUTPUT_VARIABLE PETSC_TEMP )
2016-03-03 02:09:31 +05:30
# BRUTAL FORCE TO FIND THE VARIABLES DEFINED IN PETSC
2016-03-01 21:06:48 +05:30
# ref:
# https://github.com/jedbrown/cmake-modules/blob/master/FindPETSc.cmake
set ( petsc_conf_variables "${PETSC_DIR}/lib/petsc/conf/variables" )
set ( petsc_conf_rules "${PETSC_DIR}/lib/petsc/conf/rules" )
2016-03-06 20:00:16 +05:30
# Generate a temporary makerfile to probe the PETSc configuration
# This file will be deleted once the setting from PETSc is parsed
# into CMake
2016-03-07 23:13:07 +05:30
set ( petsc_config_makefile "${PETSC_TEMP}/Makefile.petsc" )
2016-03-01 21:06:48 +05:30
file ( WRITE "${petsc_config_makefile}"
2016-03-03 02:09:31 +05:30
" ## This file was auto generated by CMake
2016-03-01 21:06:48 +05:30
# PETSC_DIR = ${PETSC_DIR}
2016-03-01 23:53:47 +05:30
S H E L L = / b i n / s h
2016-03-01 21:06:48 +05:30
i n c l u d e $ { p e t s c _ c o n f _ r u l e s }
i n c l u d e $ { p e t s c _ c o n f _ v a r i a b l e s }
2016-03-06 20:00:16 +05:30
I N C L U D E _ D I R S : = \ $ { P E T S C _ F C _ I N C L U D E S }
L I B R A R I E S : = \ $ { P E T S C _ W I T H _ E X T E R N A L _ L I B }
C O M P I L E R F ? = \ $ { F C }
L I N K E R N A M E ? = \ $ { F L I N K E R }
2016-03-01 23:53:47 +05:30
i n c l u d e s :
\ t @ e c h o \ $ { I N C L U D E _ D I R S }
2016-03-02 20:07:12 +05:30
2016-03-01 23:53:47 +05:30
e x t l i b s :
\ t @ e c h o \ $ { L I B R A R I E S }
2016-03-02 20:07:12 +05:30
2016-03-06 20:00:16 +05:30
c o m p i l e r f :
\ t @ e c h o \ $ { C O M P I L E R F }
c o m p i l e r c :
\ t @ e c h o \ $ { C O M P I L E R C }
2016-03-01 23:53:47 +05:30
l i n k e r :
2016-03-06 20:00:16 +05:30
\ t @ e c h o \ $ { L I N K E R N A M E } " )
2016-03-06 04:05:34 +05:30
2016-04-18 20:44:32 +05:30
# Find DAMASK version (DAMASK_V) in DAMASK_ROOT
find_program ( CAT_EXECUTABLE NAMES cat )
execute_process ( COMMAND ${ CAT_EXECUTABLE } ../../VERSION
R E S U L T _ V A R I A B L E D A M A S K _ V E R S I O N _ R E T U R N
O U T P U T _ V A R I A B L E D A M A S K _ V
O U T P U T _ S T R I P _ T R A I L I N G _ W H I T E S P A C E )
2016-03-07 23:13:07 +05:30
2016-03-06 20:00:16 +05:30
# CMake will execute each target in the ${petsc_config_makefile}
# to acquire corresponding PETSc Variables.
# The include path and linking libraries in PETSc usually contains
# duplicated entries, which is cleaned up later using CMake list.
find_program ( MAKE_EXECUTABLE NAMES make gmake )
# Find the PETSc includes directory settings
execute_process ( COMMAND ${ MAKE_EXECUTABLE } -f ${ petsc_config_makefile } "includes"
R E S U L T _ V A R I A B L E P E T S C _ I N C L U D E S _ R E T U R N
O U T P U T _ V A R I A B L E p e t s c _ i n c l u d e s
O U T P U T _ S T R I P _ T R A I L I N G _ W H I T E S P A C E )
# Find the PETSc external linking directory settings
# //required for final linking, must be appended after the executable
execute_process ( COMMAND ${ MAKE_EXECUTABLE } -f ${ petsc_config_makefile } "extlibs"
R E S U L T _ V A R I A B L E P E T S C _ E X T E R N A L _ L I B _ R E T U R N
O U T P U T _ V A R I A B L E p e t s c _ e x t e r n a l _ l i b
O U T P U T _ S T R I P _ T R A I L I N G _ W H I T E S P A C E )
# The MPI compiler specified in PETSc
# //its version information is used to identify whether it is INTEL FORTRAN
# //or GNU FORTRAN,
# //e.g. for PETSc configured with INTEL FORTRAN compiler
2016-04-18 20:44:32 +05:30
# // >>${MPIFC} -v
2016-03-06 20:00:16 +05:30
# // ifort version 14.0.3 --> This line is captured and parsed by CMake
execute_process ( COMMAND ${ MAKE_EXECUTABLE } -f ${ petsc_config_makefile } "compilerf"
2016-04-18 20:44:32 +05:30
R E S U L T _ V A R I A B L E M P I F C _ R E T U R N
O U T P U T _ V A R I A B L E M P I F C
2016-03-06 20:00:16 +05:30
O U T P U T _ S T R I P _ T R A I L I N G _ W H I T E S P A C E )
# PETSc specified linker (MPIF90 + PETSc linking flags)
execute_process ( COMMAND ${ MAKE_EXECUTABLE } -f ${ petsc_config_makefile } "linker"
R E S U L T _ V A R I A B L E P E T S C _ L I N K E R _ R E T U R N
O U T P U T _ V A R I A B L E P E T S C _ L I N K E R
O U T P U T _ S T R I P _ T R A I L I N G _ W H I T E S P A C E )
# Remove temporary makefile, no need to keep it anymore.
file ( REMOVE ${ petsc_config_makefile } )
# REMOVE DUPLICATE FLAGS FOR COMPILER AND LINKING
string ( REGEX MATCHALL "-I([^\" ]+ ) " T M P _ L I S T " $ { p e t s c _ i n c l u d e s } " )
list ( REMOVE_DUPLICATES TMP_LIST )
foreach ( dir ${ TMP_LIST } )
set ( PETSC_INCLUDES "${PETSC_INCLUDES} ${dir}" )
endforeach ( dir )
string ( REGEX MATCHALL "-[lLW]([^\" ]+ ) " T M P _ L I S T " $ { p e t s c _ e x t e r n a l _ l i b } " )
list ( REMOVE_DUPLICATES TMP_LIST )
foreach ( exlib ${ TMP_LIST } )
set ( PETSC_EXTERNAL_LIB "${PETSC_EXTERNAL_LIB} ${exlib}" )
endforeach ( exlib )
2016-04-18 20:44:32 +05:30
set ( CMAKE_Fortran_COMPILER "${MPIFC}" )
2016-03-08 04:30:12 +05:30
project ( DAMASK Fortran )
2016-03-07 23:13:07 +05:30
2016-03-06 20:00:16 +05:30
message ( "***Found PETSC_DIR:\n${PETSC_DIR}\n" )
message ( "***Found PETSC_INCLUDES:\n${PETSC_INCLUDES}\n" )
message ( "***Found PETSC_EXTERNAL_LIB:\n${PETSC_EXTERNAL_LIB}\n" )
message ( "***Found PETSC_LINKER:\n${PETSC_LINKER}\n" )
2016-04-18 20:44:32 +05:30
message ( "***Found FORTRAN MPI COMPILER:\n${MPIFC}\n" )
2016-03-07 22:24:36 +05:30
2016-03-06 20:00:16 +05:30
# # https://cmake.org/Wiki/CMake_FAQ#How_do_I_use_a_different_compiler.3F
2016-03-06 13:58:20 +05:30
#---------------------------------------------------------------------------------------
# Now start to care about DAMASK
# THE VERSION NUMBER.
set ( DAMASK_VERSION_MAJOR 1 )
set ( DAMASK_VERSION_MINOR ${ DAMASK_V } )
2016-03-15 01:27:19 +05:30
# Built-in options for DAMASK build system
# -> can be overwritten from commandline/install_script
2016-03-15 03:19:36 +05:30
option ( OPENMP "Use OpenMP libaries for DAMASK" ON )
2016-04-18 20:44:32 +05:30
option ( OPTIMIZATION "DAMASK optimization level [OFF,DEFENSIVE,AGGRESSIVE]" "DEFENSIVE" )
2016-03-15 03:19:36 +05:30
option ( SPECTRAL "Build spectral sovler for DAMASAK" OFF )
2016-04-18 20:44:32 +05:30
option ( FEM "Build FEM solver for DAMASK" OFF )
2016-03-15 01:27:19 +05:30
2016-03-06 13:58:20 +05:30
# COMPILE VARIABLES
add_definitions ( -DDAMASKVERSION= "${DAMASK_V}" )
add_definitions ( -DPETSc )
add_definitions ( -DFLOAT=8 )
add_definitions ( -DINT=4 )
# Setting installation prefix
2016-03-08 04:30:12 +05:30
if ( DEFINED DAMASK_INSTALL )
2016-03-06 13:58:20 +05:30
set ( CMAKE_INSTALL_PREFIX "${DAMASK_INSTALL}" )
2016-03-08 04:30:12 +05:30
else ( DEFINED DAMASK_INSTALL )
set ( CMAKE_INSTALL_PREFIX "${PROJECT_SOURCE_DIR}/bin" )
endif ( DEFINED DAMASK_INSTALL )
2016-03-06 13:58:20 +05:30
message ( "\n***The binary will be installed at\n${CMAKE_INSTALL_PREFIX}\n" )
# DAMASK DRIVER SELECTION
if ( "${DAMASK_DRIVER}" STREQUAL "SPECTRAL" )
set ( SPECTRAL ON )
add_definitions ( -DSpectral )
2016-03-08 04:30:12 +05:30
set ( FEM OFF )
elseif ( "${DAMASK_DRIVER}" STREQUAL "FEM" )
2016-03-06 13:58:20 +05:30
set ( FEM ON )
add_definitions ( -DFEM )
2016-03-08 04:30:12 +05:30
set ( SPECTRAL OFF )
endif ( )
2016-03-06 13:58:20 +05:30
2016-03-04 00:42:10 +05:30
set ( DAMASK_INCLUDE_FLAGS "${DAMASK_INCLUDE_FLAGS} ${PETSC_INCLUDES}" )
set ( DAMASK_INCLUDE_FLAGS "${DAMASK_INCLUDE_FLAGS} -I${PROJECT_SOURCE_DIR}/lib" )
2016-02-24 03:30:41 +05:30
2016-04-18 20:44:32 +05:30
if ( "${OPTIMIZATION}" STREQUAL "OFF" )
2016-02-26 03:03:21 +05:30
set ( OPTIMIZATION_ifort "-O0 -no-ip" )
2016-02-26 21:38:25 +05:30
set ( OPTIMIZATION_gfortran "-O0" )
2016-03-05 03:13:51 +05:30
elseif ( "${OPTIMIZATION}" STREQUAL "DEFENSIVE" )
2016-02-26 03:03:21 +05:30
set ( OPTIMIZATION_ifort "-O2" )
set ( OPTIMIZATION_gfortran "-O2" )
2016-03-08 04:30:12 +05:30
elseif ( "${OPTIMIZATION}" STREQUAL "AGGRESSIVE" ) #ToDo: this is not fully correct here, check old makefile
2016-02-26 21:38:25 +05:30
set ( OPTIMIZATION_ifort "-ipo -O3 -no-prec-div -fp-model fast=2 -xHost" ) #-fast = -ipo, -O3, -no-prec-div, -static, -fp-model fast=2, and -xHost"
2016-02-26 03:03:21 +05:30
set ( OPTIMIZATION_gfortran "-O3 -ffast-math -funroll-loops -ftree-vectorize" )
2016-03-08 04:30:12 +05:30
else ( )
2016-02-26 03:03:21 +05:30
set ( OPTIMIZATION_ifort "-O2" )
set ( OPTIMIZATION_gfortran "-O2" )
2016-03-08 04:30:12 +05:30
endif ( )
2016-02-26 03:03:21 +05:30
###################################################################################################
# COMPILE SWITCHES
# -shared-intel: Link against shared Intel libraries instead of static ones
# -fpp: preprocessor
# -ftz: flush unterflow to zero, automatically set if O<0,1,2,3> >0
# -assume byterecl record length is given in bytes (also set by -standard-semantics)
# fpe_summary print list of floating point exceptions occured during execution
# -fimplicit-none: assume "implicit-none" even if not present in source
# -diag-disable: disables warnings, where
# warning ID 5268: the text exceeds right hand column allowed on the line (we have only comments there)
# -warn: enables warnings, where
# declarations: any undeclared names (alternative name: -implicitnone)
# general: warning messages and informational messages are issued by the compiler
# usage: questionable programming practices
# interfaces: checks the interfaces of all SUBROUTINEs called and FUNCTIONs invoked in your compilation against an external set of interface blocks
# ignore_loc: %LOC is stripped from an actual argument
# alignments: data that is not naturally aligned
# unused: declared variables that are never used
# stderrors: warnings about Fortran standard violations are changed to errors (STANDARD_CHECK)
#
###################################################################################################
# MORE OPTIONS FOR DEBUGGING DURING COMPILATION
# -warn: enables warnings, where
# truncated_source: Determines whether warnings occur when source exceeds the maximum column width in fixed-format files. (too many warnings because we have comments beyond character 132)
# uncalled: Determines whether warnings occur when a statement function is never called
# all:
# -name as_is: case sensitive Fortran!
###################################################################################################
2016-03-08 04:30:12 +05:30
if ( ${ CMAKE_Fortran_COMPILER_ID } STREQUAL "Intel" )
if ( OPENMP )
set ( OPENMP_FLAG "-openmp -openmp-report0 -parallel" )
endif ( )
if ( "${OPTIMIZATION}" STREQUAL "OFF" )
set ( OPTIMIZATION_FLAG "-O0 -no-ip" )
elseif ( "${OPTIMIZATION}" STREQUAL "AGGRESSIVE" ) #ToDo: this is not fully correct here, check old makefile
set ( OPTIMIZATION_FLAG "-ipo -O3 -no-prec-div -fp-model fast=2 -xHost" ) #-fast = -ipo, -O3, -no-prec-div, -static, -fp-model fast=2, and -xHost"
elseif ( "${OPTIMIZATION}" STREQUAL "ULTRA" )
set ( OPTIMIZATION_FLAG "-ipo -O3 -no-prec-div -fp-model fast=2 -xHost" ) #-fast = -ipo, -O3, -no-prec-div, -static, -fp-model fast=2, and -xHost"
else ( ) # this is the default
set ( OPTIMIZATION_FLAG "-O2" )
endif ( )
2016-03-26 02:57:00 +05:30
set ( STANDARD_CHECK "-stand f08 -standard-semantics" )
2016-03-08 04:30:12 +05:30
set ( COMPILE_FLAGS "${COMPILE_FLAGS} -fpp" )
set ( COMPILE_FLAGS "${COMPILE_FLAGS} -ftz" )
set ( COMPILE_FLAGS "${COMPILE_FLAGS} -assume byterecl,fpe_summary" )
set ( COMPILE_FLAGS "${COMPILE_FLAGS} -diag-disable 5268" )
set ( COMPILE_FLAGS "${COMPILE_FLAGS} -warn declarations" )
set ( COMPILE_FLAGS "${COMPILE_FLAGS} -warn general" )
set ( COMPILE_FLAGS "${COMPILE_FLAGS} -warn usage" )
set ( COMPILE_FLAGS "${COMPILE_FLAGS} -warn interfaces" )
set ( COMPILE_FLAGS "${COMPILE_FLAGS} -warn ignore_loc" )
set ( COMPILE_FLAGS "${COMPILE_FLAGS} -warn alignments" )
set ( COMPILE_FLAGS "${COMPILE_FLAGS} -warn unused" )
2016-02-26 03:03:21 +05:30
###################################################################################################
# COMPILE SWITCHES FOR RUNTIME DEBUGGING
# -g: Generate symbolic debugging information in the object file
# -traceback: Generate extra information in the object file to provide source file traceback information when a severe error occurs at run time.
# -gen-interfaces: Generate an interface block for each routine. http://software.intel.com/en-us/blogs/2012/01/05/doctor-fortran-gets-explicit-again/
# -fp-stack-check: Generate extra code after every function call to ensure that the floating-point (FP) stack is in the expected state.
# -ftrapuv Trap uninitalized variables
# -check: checks at runtime, where
# bounds: check if an array index is too small (<1) or too large!
# format: Checking for the data type of an item being formatted for output.
# output_conversion: Checking for the fit of data items within a designated format descriptor field.
# pointers: Checking for certain disassociated or uninitialized pointers or unallocated allocatable objects.
# uninit: Checking for uninitialized variables.
# -fpe-all0 capture all floating-point exceptions, sets -ftz automatically
# -warn: enables warnings, where
# errors: warnings are changed to errors
# stderrors: warnings about Fortran standard violations are changed to errors
# information on http://software.intel.com/en-us/articles/determining-root-cause-of-sigsegv-or-sigbus-errors/
###################################################################################################
# MORE OPTIONS FOR RUNTIME DEBUGGING
# -heap-arrays: should not be done for OpenMP, but set "ulimit -s unlimited" on shell. Probably it helps also to unlimit other limits
# -check: checks at runtime, where
# arg_temp_created: will cause a lot of warnings because we create a bunch of temporary arrays (performance?)
# stack:
###################################################################################################
2016-03-08 04:30:12 +05:30
set ( DEBUG_FLAGS "${DEBUG_FLAGS} -g" )
set ( DEBUG_FLAGS "${DEBUG_FLAGS} -traceback" )
set ( DEBUG_FLAGS "${DEBUG_FLAGS} -gen-interfaces" )
set ( DEBUG_FLAGS "${DEBUG_FLAGS} -fp-stack-check" )
set ( DEBUG_FLAGS "${DEBUG_FLAGS} -fp-model strict" )
set ( DEBUG_FLAGS "${DEBUG_FLAGS} -check bounds,format,output_conversion,pointers,uninit" )
set ( DEBUG_FLAGS "${DEBUG_FLAGS} -ftrapuv" )
set ( DEBUG_FLAGS "${DEBUG_FLAGS} -fpe-all0" )
set ( DEBUG_FLAGS "${DEBUG_FLAGS} -warn errors" )
set ( DEBUG_FLAGS "${DEBUG_FLAGS} -warn stderrors" )
set ( DEBUG_FLAGS "${DEBUG_FLAGS} -debug-parameters all" )
set ( LINKER_FLAG " -shared-intel" )
###################################################################################################
#-real-size 32: set precision to one of those 32/64/128 (= 4/8/16 bytes) for standard real (=8 for pReal)
#-integer-size 16: set precision to one of those 16/32/64 (= 2/4/8 bytes) for standard integer (=4 for pInt)
###################################################################################################
set ( PRECISION "-real-size 64 -integer-size 32" )
2016-02-26 03:03:21 +05:30
###################################################################################################
# COMPILE SWITCHES
# -shared
# -Wl,-undefined,dynamic_lookup:ensure to link against dynamic libraries
# -xf95-cpp-input: preprocessor
2016-02-26 21:38:25 +05:30
# -ffree-line-length-132: restrict line length to the standard 240 characters (lattice.f90 require larger)
2016-02-26 03:03:21 +05:30
# -ffpe-summary: print summary of floating point exeptions (‘ invalid’ , ‘ zero’ , ‘ overflow’ , ‘ underflow’ , ‘ inexact’ and ‘ denormal’ )
# -fimplicit-none: assume "implicit-none" even if not present in source
# -fmodule-private: assume "private" even if not present in source
# -Wcharacter-truncation: warn if character expressions (strings) are truncated
# -Wunderflow: produce a warning when numerical constant expressions are encountered, which yield an UNDERFLOW during compilation
# -Wsuggest-attribute=pure:
# -Wsuggest-attribute=noreturn:
# -Wconversion-extra
# -Wimplicit-procedure
# -Wall: sets the following Fortran options:
# -Waliasing: warn about possible aliasing of dummy arguments. Specifically, it warns if the same actual argument is associated with a dummy argument with "INTENT(IN)" and a dummy argument with "INTENT(OUT)" in a call with an explicit interface.
# -Wampersand: checks if a character expression is continued proberly by an ampersand at the end of the line and at the beginning of the new line
# -Warray-bounds: checks if array reference is out of bounds at compile time. use -fcheck-bounds to also check during runtime
# -Wconversion: warn about implicit conversions between different type
# -Wsurprising: warn when "suspicious" code constructs are encountered. While technically legal these usually indicate that an error has been made.
# -Wc-binding-type:
# -Wintrinsics-std: only standard intrisics are available, e.g. "call flush(6)" will cause an error
# -Wno-tabs: do not allow tabs in source
# -Wintrinsic-shadow: warn if a user-defined procedure or module procedure has the same name as an intrinsic
# -Wline-truncation:
# -Wtarget-lifetime:
# -Wreal-q-constant: warn about real-literal-constants with 'q' exponent-letter
# -Wunused: a number of unused-xxx warnings
# these are general (non -Fortran options) implied by -Wall
# -Waddress
# -Warray-bounds (only with -O2)
# -Wc++11-compat
# -Wchar-subscripts
# -Wcomment
# -Wformat
# -Wmaybe-uninitialized
# -Wnonnull
# -Wparentheses
# -Wpointer-sign
# -Wreorder
# -Wreturn-type
# -Wsequence-point
# -Wstrict-aliasing
# -Wstrict-overflow=1
# -Wswitch
# -Wtrigraphs
# -Wuninitialized
# -Wunknown-pragmas
# -Wunused-function
# -Wunused-label
# -Wunused-value
# -Wunused-variable
# -Wvolatile-register-var
# -Wextra: sets the following Fortran options:
# -Wunuses-parameter:
# -Wcompare-reals:
# these are general (non -Fortran options) implied by -Wextra
# -Wclobbered
# -Wempty-body
# -Wignored-qualifiers
# -Wmissing-field-initializers
# -Woverride-init
# -Wsign-compare
# -Wtype-limits
# -Wuninitialized
# -Wunused-but-set-parameter (only with -Wunused or -Wall)
# -Wno-globals
# -ffpe-summary=all only for newer gfortran
###################################################################################################
# MORE OPTIONS FOR DEBUGGING DURING COMPILATION
# -Warray-temporarieswarnings: because we have many temporary arrays (performance issue?):
# -Wimplicit-interface: no interfaces for lapack routines
# -Wunsafe-loop-optimizations: warn if the loop cannot be optimized due to nontrivial assumptions.
# -Wstrict-overflow:
###################################################################################################
2016-03-08 04:30:12 +05:30
elseif ( ${ CMAKE_Fortran_COMPILER_ID } STREQUAL "GNU" )
if ( OPENMP )
set ( OPENMP_FLAG "-fopenmp" )
endif ( )
if ( "${OPTIMIZATION}" STREQUAL "OFF" )
set ( OPTIMIZATION_FLAG "-O0" )
elseif ( "${OPTIMIZATION}" STREQUAL "AGGRESSIVE" ) #ToDo: this is not fully correct here, check old makefile
set ( OPTIMIZATION_FLAG "-O3 -ffast-math -funroll-loops -ftree-vectorize" )
elseif ( "${OPTIMIZATION}" STREQUAL "ULTRA" )
set ( OPTIMIZATION_FLAG "-O3 -ffast-math -funroll-loops -ftree-vectorize" )
else ( ) # this is the default
set ( OPTIMIZATION_FLAG "-O2" )
endif ( )
set ( STANDARD_CHECK "-std=f2008ts -pedantic-errors" )
set ( COMPILE_FLAGS "${COMPILE_FLAGS} -xf95-cpp-input" )
set ( COMPILE_FLAGS "${COMPILE_FLAGS} -ffree-line-length-132" )
set ( COMPILE_FLAGS "${COMPILE_FLAGS} -fimplicit-none" )
set ( COMPILE_FLAGS "${COMPILE_FLAGS} -fmodule-private" )
set ( COMPILE_FLAGS "${COMPILE_FLAGS} -Wall" )
set ( COMPILE_FLAGS "${COMPILE_FLAGS} -Wextra" )
set ( COMPILE_FLAGS "${COMPILE_FLAGS} -Wcharacter-truncation" )
set ( COMPILE_FLAGS "${COMPILE_FLAGS} -Wunderflow" )
set ( COMPILE_FLAGS "${COMPILE_FLAGS} -Wsuggest-attribute=pure" )
set ( COMPILE_FLAGS "${COMPILE_FLAGS} -Wsuggest-attribute=noreturn" )
set ( COMPILE_FLAGS "${COMPILE_FLAGS} -Wconversion-extra" )
set ( COMPILE_FLAGS "${COMPILE_FLAGS} -Wimplicit-procedure" )
set ( COMPILE_FLAGS "${COMPILE_FLAGS} -Wno-unused-parameter" )
set ( COMPILE_FLAGS "${COMPILE_FLAGS} -fno-range-check" )
set ( LINKER_FLAG " -Wl,-undefined,dynamic_lookup" )
2016-02-26 03:03:21 +05:30
###################################################################################################
# COMPILE SWITCHES FOR RUNTIME DEBUGGING
# -ffpe-trap=invalid,\ stop execution if floating point exception is detected (NaN is silent)
# zero,\
# overflow
# -fcheck=all: sets the following Fortran options:
# array-temps
# bounds
# do
# mem
# pointer
# recursion
###################################################################################################
# MORE OPTIONS FOR RUNTIME DEBUGGING
# -ffpe-trap=precision,\
# denormal, \
# underflow
###################################################################################################
2016-03-08 04:30:12 +05:30
set ( DEBUG_FLAGS "${DEBUG_FLAGS} -g" )
set ( DEBUG_FLAGS "${DEBUG_FLAGS} -fbacktrace" )
set ( DEBUG_FLAGS "${DEBUG_FLAGS} -fdump-core" )
set ( DEBUG_FLAGS "${DEBUG_FLAGS} -fcheck=all" )
set ( DEBUG_FLAGS "${DEBUG_FLAGS} -ffpe-trap=invalid,zero,overflow" )
2016-02-26 21:38:25 +05:30
###################################################################################################
#-fdefault-real-8: set precision to 8 bytes for standard real (=8 for pReal). Will set size of double to 16 bytes as long as -fdefault-double-8 is not set
#-fdefault-double-8: set precision to 8 bytes for double real, would be 16 bytes because -fdefault-real-8 is used
#-fdefault-integer-8: Use it to set precision to 8 bytes for integer, don't use it for the standard case of pInt=4 (there is no -fdefault-integer-4)
###################################################################################################
2016-03-08 04:30:12 +05:30
set ( PRECISION "-fdefault-real-8 -fdefault-double-8" )
endif ( )
set ( CMAKE_Fortran_FLAGS_RELEASE "${CMAKE_Fortran_FLAGS_RELEASE} ${OPENMP_FLAG}" )
set ( CMAKE_Fortran_FLAGS_RELEASE "${CMAKE_Fortran_FLAGS_RELEASE} ${STANDARD_CHECK}" )
set ( CMAKE_Fortran_FLAGS_RELEASE "${CMAKE_Fortran_FLAGS_RELEASE} ${OPTIMIZATION_FLAG}" )
set ( CMAKE_Fortran_FLAGS_RELEASE "${CMAKE_Fortran_FLAGS_RELEASE} ${COMPILE_FLAGS}" )
set ( CMAKE_Fortran_FLAGS_RELEASE "${CMAKE_Fortran_FLAGS_RELEASE} ${PRECISION}" )
set ( CMAKE_EXE_LINKER_FLAGS_RELEASE "${CMAKE_EXE_LINKER_FLAGS_RELEASE} ${OPENMP_FLAG}" )
set ( CMAKE_EXE_LINKER_FLAGS_RELEASE "${CMAKE_EXE_LINKER_FLAGS_RELEASE} ${STANDARD_CHECK}" )
set ( CMAKE_EXE_LINKER_FLAGS_RELEASE "${CMAKE_EXE_LINKER_FLAGS_RELEASE} ${OPTIMIZATION_FLAG}" )
2016-03-09 00:24:40 +05:30
set ( CMAKE_EXE_LINKER_FLAGS_RELEASE "${CMAKE_EXE_LINKER_FLAGS_RELEASE} ${LINKER_FLAG}" )
2016-03-08 04:30:12 +05:30
set ( CMAKE_Fortran_FLAGS_DEBUG "${CMAKE_Fortran_FLAGS_DEBUG} ${CMAKE_Fortran_FLAGS_RELEASE}" )
set ( CMAKE_Fortran_FLAGS_DEBUG "${CMAKE_Fortran_FLAGS_DEBUG} ${DEBUG_FLAGS}" )
2016-02-24 03:30:41 +05:30
2016-04-16 01:56:43 +05:30
# Finalizing, adding PREFIX and SUFFIX to compiler chain
2016-04-19 04:02:08 +05:30
set ( CMAKE_Fortran_FLAGS_RELEASE "${BUILDCMD_PRE} ${CMAKE_Fortran_FLAGS_RELEASE} ${DAMASK_INCLUDE_FLAGS} ${BUILDCMD_POST}" )
set ( CMAKE_Fortran_FLAGS_DEBUG "${BUILDCMD_PRE} ${CMAKE_Fortran_FLAGS_DEBUG} ${DAMASK_INCLUDE_FLAGS} ${BUILDCMD_POST}" )
2016-03-04 02:39:02 +05:30
set ( CMAKE_LINKER "${PETSC_LINKER}" )
2016-04-16 01:56:43 +05:30
2016-03-05 03:13:51 +05:30
if ( "${CMAKE_BUILD_TYPE}" STREQUAL "RELEASE" )
2016-03-04 02:39:02 +05:30
set ( CMAKE_Fortran_LINK_EXECUTABLE
2016-04-19 04:02:08 +05:30
" $ { B U I L D C M D _ P R E } $ { C M A K E _ L I N K E R } $ { C M A K E _ E X E _ L I N K E R _ F L A G S _ R E L E A S E } < O B J E C T S > - o < T A R G E T > < L I N K _ L I B R A R I E S > $ { P E T S C _ E X T E R N A L _ L I B } $ { B U I L D C M D _ P O S T } " )
2016-03-05 03:13:51 +05:30
else ( "${CMAKE_BUILD_TYPE}" STREQUAL "RELEASE" )
2016-03-04 02:39:02 +05:30
set ( CMAKE_Fortran_LINK_EXECUTABLE
2016-04-19 04:02:08 +05:30
" $ { B U I L D C M D _ P R E } $ { C M A K E _ L I N K E R } $ { C M A K E _ E X E _ L I N K E R _ F L A G S _ D E B U G } < O B J E C T S > - o < T A R G E T > < L I N K _ L I B R A R I E S > $ { P E T S C _ E X T E R N A L _ L I B } $ { B U I L D C M D _ P O S T } " )
2016-03-05 03:13:51 +05:30
endif ( "${CMAKE_BUILD_TYPE}" STREQUAL "RELEASE" )
2016-03-02 20:07:12 +05:30
message ( "***COMPILE FLAGS:\n${CMAKE_Fortran_FLAGS_RELEASE}\n" )
message ( "***LINK FLAGS:\n${CMAKE_EXE_LINKER_FLAGS_RELEASE}\n" )
2016-02-26 23:00:57 +05:30
2016-03-05 01:12:55 +05:30
# MOVE to SOURCE DIRECTORY for BUILDING
add_subdirectory ( src )
2016-03-04 03:15:15 +05:30
2016-03-05 01:12:55 +05:30
# INSTALL BUILT BINARIES
if ( SPECTRAL )
2016-04-18 20:44:32 +05:30
INSTALL ( PROGRAMS ${ PROJECT_BINARY_DIR } /src/DAMASK_spectral
2016-03-05 01:12:55 +05:30
D E S T I N A T I O N $ { C M A K E _ I N S T A L L _ P R E F I X } )
elseif ( FEM )
2016-04-18 20:44:32 +05:30
INSTALL ( PROGRAMS ${ PROJECT_BINARY_DIR } /src/DAMASK_FEM
2016-03-05 01:12:55 +05:30
D E S T I N A T I O N $ { C M A K E _ I N S T A L L _ P R E F I X } )
endif ( SPECTRAL )
2016-02-25 02:55:57 +05:30
2016-02-26 03:03:21 +05:30
##
2016-02-25 02:55:57 +05:30
# ADD TESTING CASES
2016-02-26 21:38:25 +05:30
# add_test (SmokeTestRun
# DAMASK_spectral.exe -g test/test1.geom -l test/test.load)
2016-02-25 02:55:57 +05:30
# Enable Dashboard scripting
# include (CTest)
2016-03-06 13:58:20 +05:30
# set (CTEST_PROJECT_NAME "DAMASK")