mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-11-27 02:10:55 +08:00
[svn-r7113]
Purpose: Small bug fix Description: On SP when 64 bit mode is used, RUNPARALLEL environment variable is not set up correctly for Fortran. Solution: Copy Albert's fix for C library to Fortran Platforms tested: copper with 64-bit parallle C and Fortran Misc. update:
This commit is contained in:
parent
8369a1a908
commit
64e6514b68
@ -3,22 +3,25 @@
|
||||
# This file is part of the HDF5 build script. It is processed shortly
|
||||
# after configure starts and defines, among other things, flags for
|
||||
# the various compile modes.
|
||||
#
|
||||
# See BlankForm in this directory for details.
|
||||
|
||||
# Use AIX supplied C compiler by default, xlc for serial, mpcc_r for parallel.
|
||||
# Use -D_LARGE_FILES by default to support large file size.
|
||||
if test "X-" = "X-$CC"; then
|
||||
if test "X-$enable_parallel" = "X-yes"; then
|
||||
CC='mpcc_r -D_LARGE_FILES'
|
||||
CC='mpcc_r -qlanglvl=ansi -D_LARGE_FILES'
|
||||
CC_BASENAME=mpcc_r
|
||||
RUNPARALLEL=${RUNPARALLEL="MP_PROCS=3 MP_TASKS_PER_NODE=3 poe"}
|
||||
else
|
||||
CC='xlc -D_LARGE_FILES'
|
||||
CC='xlc -qlanglvl=ansi -D_LARGE_FILES'
|
||||
CC_BASENAME=xlc
|
||||
fi
|
||||
fi
|
||||
|
||||
# Define RUNPARALLEL if parallel mode is enabled or a parallel compiler used.
|
||||
if test "X-$enable_parallel" = "X-yes" -o X-$CC_BASENAME = X-mpcc_r; then
|
||||
RUNPARALLEL=${RUNPARALLEL="MP_PROCS=\$\${NPROCS:=3} MP_TASKS_PER_NODE=\$\${NPROCS:=3} poe"}
|
||||
fi
|
||||
|
||||
|
||||
#----------------------------------------------------------------------------
|
||||
# Compiler flags. The CPPFLAGS values should not include package debug
|
||||
# flags like `-DH5G_DEBUG' since these are added with the
|
||||
@ -54,20 +57,6 @@ case $CC_BASENAME in
|
||||
;;
|
||||
esac
|
||||
|
||||
# Cross compiling defaults
|
||||
ac_cv_c_bigendian=${ac_cv_c_bigendian='yes'}
|
||||
ac_cv_header_stdc=${ac_cv_header_stdc='yes'}
|
||||
ac_cv_sizeof_short=${ac_cv_sizeof_short=2}
|
||||
ac_cv_sizeof_int=${ac_cv_sizeof_int=4}
|
||||
ac_cv_sizeof_long=${ac_cv_sizeof_long=4}
|
||||
ac_cv_sizeof_long_long=${ac_cv_sizeof_long_long=8}
|
||||
ac_cv_sizeof_float=${ac_cv_sizeof_float=4}
|
||||
ac_cv_sizeof_double=${ac_cv_sizeof_double=8}
|
||||
ac_cv_sizeof_long_double=${ac_cv_sizeof_long_double=8}
|
||||
ac_cv_sizeof_int=${ac_cv_sizeof_int=4}
|
||||
# Don't cache size_t and off_t because they depend on if -D_LARGE_FILES is used
|
||||
#ac_cv_sizeof_size_t=${ac_cv_sizeof_size_t=4}
|
||||
#ac_cv_sizeof_off_t=${ac_cv_sizeof_off_t=8}
|
||||
|
||||
|
||||
# The default Fortran 90 compiler
|
||||
|
Loading…
Reference in New Issue
Block a user