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-flags | |
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-flags')
-rw-r--r-- | config/pgi-flags | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/config/pgi-flags b/config/pgi-flags index ac1ae22..7ebb2c4 100644 --- a/config/pgi-flags +++ b/config/pgi-flags @@ -56,11 +56,7 @@ if test "X-pgcc" = "X-$cc_vendor"; then CFLAGS="$CFLAGS $arch -Minform,warn" # Production - - # Omit frame pointer for optimized code? - NOFP=${NOFP:=-Mnoframe} - - PROD_CFLAGS="-fast -s $NOFP" + PROD_CFLAGS="-fast -s -Mnoframe" PROD_CPPFLAGS= # Debug |