diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2004-10-12 16:11:27 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2004-10-12 16:11:27 (GMT) |
commit | 86d0132279cdcb7bc9b793e94509b0abd5b3147e (patch) | |
tree | f5882a1062877c7903340d70be8d842efc770f3c /config/pgi-fflags | |
parent | 3b057e2f232d99b9322a480742a37624b54eb8aa (diff) | |
download | hdf5-86d0132279cdcb7bc9b793e94509b0abd5b3147e.zip hdf5-86d0132279cdcb7bc9b793e94509b0abd5b3147e.tar.gz hdf5-86d0132279cdcb7bc9b793e94509b0abd5b3147e.tar.bz2 |
[svn-r9407] Purpose:
Code cleanup/bug fix
Description:
Remove the undocumented "$NOFP" shell variable which would allow production
builds without removing the stack frame. This was cascading between C and
FORTRAN builds and causing problems.
Solution:
Hard-code removing the stack frame for now. Users would have needed to
read the configure scripts anyway, so there's not really much benefit to the
extra knob. Users who need this functionality (production builds with stack
frames) are debugging probably, so they will need to modify the script and
build their own version of the library now.
Platforms tested:
Linux 2.4 (verbena)
Too minor to require h5committest
Diffstat (limited to 'config/pgi-fflags')
-rw-r--r-- | config/pgi-fflags | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/config/pgi-fflags b/config/pgi-fflags index ea59c2d..e617db6 100644 --- a/config/pgi-fflags +++ b/config/pgi-fflags @@ -59,11 +59,7 @@ if test "X-pgf90" = "X-$f9x_vendor"; then FFLAGS="$FFLAGS -Mdclchk -Mstandard -Minform,warn" # Production - - # Omit frame pointer for optimized code? - NOFP=${NOFP:=-Mnoframe} - - PROD_FFLAGS="-fast -s $NOFP" + PROD_FFLAGS="-fast -s -Mnoframe" # Debug DEBUG_FFLAGS="-g -Mbounds -Mchkfpstk -Mchkptr" |