diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2016-01-29 13:51:29 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2016-01-29 13:51:29 (GMT) |
commit | 61ab7b8bf3f15e31728ed5d4274a4e826f76ff7a (patch) | |
tree | ec8d1f78ce20288e0151cda3393561ed34215329 /config/pgi-fflags | |
parent | 821ce6874d9e2b322dda171f95901d5f68a1c26a (diff) | |
download | hdf5-61ab7b8bf3f15e31728ed5d4274a4e826f76ff7a.zip hdf5-61ab7b8bf3f15e31728ed5d4274a4e826f76ff7a.tar.gz hdf5-61ab7b8bf3f15e31728ed5d4274a4e826f76ff7a.tar.bz2 |
[svn-r29016] Merge of r28936, 28949, 28960-29009 from trunk.
Tested on: 64-bit Ubuntu 15.10 (Linux 4.2.0 x86_64) gcc 5.2.1
autotools serial w/ Fortran and C++
autotools parallel (MPICH 3.1.4) w/ Fortran
CMake serial (3.3.2, via cmakehdf5)
Diffstat (limited to 'config/pgi-fflags')
-rw-r--r-- | config/pgi-fflags | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/config/pgi-fflags b/config/pgi-fflags index 8e574e4..fbcba52 100644 --- a/config/pgi-fflags +++ b/config/pgi-fflags @@ -87,12 +87,20 @@ if test "X-pgf90" = "X-$f9x_vendor"; then PROD_FCFLAGS="-fast -s -Mnoframe" # Debug - DEBUG_FCFLAGS="-g -Mbounds -Mchkptr -Mdclchk" + DEBUG_FCFLAGS="-Mbounds -Mchkptr -Mdclchk" - # Profile - PROFILE_FCFLAGS="-g -Mprof=func,line" + # Symbols + SYMBOLS_FCFLAGS="-g" + + # Profiling + PROFILE_FCFLAGS="-Mprof=func,line" # Use this for profiling with gprof - #PROFILE_FCFLAGS="-g -pg" + #PROFILE_FCFLAGS="-pg" + + # Optimization + HIGH_OPT_FCFLAGS= + DEBUG_OPT_FCFLAGS= + NO_OPT_FCFLAGS= # Flags are set f9x_flags_set=yes |