diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2006-05-29 21:46:13 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2006-05-29 21:46:13 (GMT) |
commit | 6fe08687727ad62c34d9e05d50b5d7625ddf8116 (patch) | |
tree | 491b14149e3562abf5ca776acd51ae9e35e4dd65 /bin | |
parent | a55870605871f646add2c7929a6176c11095716d (diff) | |
download | hdf5-6fe08687727ad62c34d9e05d50b5d7625ddf8116.zip hdf5-6fe08687727ad62c34d9e05d50b5d7625ddf8116.tar.gz hdf5-6fe08687727ad62c34d9e05d50b5d7625ddf8116.tar.bz2 |
[svn-r12385] Purpose:
feature.
Description:
Added the option of -64 which is similar to -n32. This is needed by
Atlantia which has the ABI as -n32.
Platforms tested:
Pretty straight forward but not testable by h5committest.
Will be tested when daily tests run.
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/runtest | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bin/runtest b/bin/runtest index 0e7db9e..2147534 100755 --- a/bin/runtest +++ b/bin/runtest @@ -290,6 +290,11 @@ RUNSNAPTEST() CC="cc -n32" export CC ;; + -64) # want -64 option + SRCDIRNAME=${SRCDIRNAME}-64 + CC="cc -64" + export CC + ;; parallel) # want parallel test SNAPCMD_OPT="$SNAPCMD_OPT $ENABLE_PARALLEL" SRCDIRNAME=${SRCDIRNAME}-pp |