summaryrefslogtreecommitdiffstats
path: root/config/intel-osf1
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>1999-07-10 23:15:49 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>1999-07-10 23:15:49 (GMT)
commit95189ab2e3ab439ab9eaec819ae4b0614187d86b (patch)
treeaeeb369bb08c2bc11eae80b51e988f686e6c6548 /config/intel-osf1
parentfe79f2ac3468eec480b4369e58cc316c39f88388 (diff)
downloadhdf5-95189ab2e3ab439ab9eaec819ae4b0614187d86b.zip
hdf5-95189ab2e3ab439ab9eaec819ae4b0614187d86b.tar.gz
hdf5-95189ab2e3ab439ab9eaec819ae4b0614187d86b.tar.bz2
[svn-r1458] Changed the disable-shared to be default only if not set.
Added cached sizes for the leastN_t and fastN_t types which are not defined as system types for TFLOP.
Diffstat (limited to 'config/intel-osf1')
-rw-r--r--config/intel-osf129
1 files changed, 26 insertions, 3 deletions
diff --git a/config/intel-osf1 b/config/intel-osf1
index cb1035a..0b50c4f 100644
--- a/config/intel-osf1
+++ b/config/intel-osf1
@@ -6,6 +6,8 @@
#
# See BlankForm in this directory for details.
+# This is for the ASCI RED TFLOPS machine
+
# The default compiler is `cicc'
if test "X-" = "X-$CC"; then
CC=cicc
@@ -49,12 +51,33 @@ enable_shared="${enable_shared:-no}"
# `ll' or if the format would be `%qd' set it to `q'.
hdf5_cv_printf_ll=${hdf5_cv_printf_ll='ll'}
-# Hard set sizeof_intn_t to 0 because they are not supported.
+# Hard set sizeof_intN_t to 0 because they are not supported.
+ac_cv_sizeof_int8_t=${ac_cv_sizeof_int8_t='0'}
ac_cv_sizeof_int16_t=${ac_cv_sizeof_int16_t='0'}
ac_cv_sizeof_int32_t=${ac_cv_sizeof_int32_t='0'}
ac_cv_sizeof_int64_t=${ac_cv_sizeof_int64_t='0'}
-ac_cv_sizeof_int8_t=${ac_cv_sizeof_int8_t='0'}
+ac_cv_sizeof_uint8_t=${ac_cv_sizeof_uint8_t='0'}
ac_cv_sizeof_uint16_t=${ac_cv_sizeof_uint16_t='0'}
ac_cv_sizeof_uint32_t=${ac_cv_sizeof_uint32_t='0'}
ac_cv_sizeof_uint64_t=${ac_cv_sizeof_uint64_t='0'}
-ac_cv_sizeof_uint8_t=${ac_cv_sizeof_uint8_t='0'}
+
+# Hard set sizeof_int_leastN_t to 0 because they are not supported.
+ac_cv_sizeof_int_least8_t=${ac_cv_sizeof_int_least8_t='0'}
+ac_cv_sizeof_int_least16_t=${ac_cv_sizeof_int_least16_t='0'}
+ac_cv_sizeof_int_least32_t=${ac_cv_sizeof_int_least32_t='0'}
+ac_cv_sizeof_int_least64_t=${ac_cv_sizeof_int_least64_t='0'}
+ac_cv_sizeof_uint_least8_t=${ac_cv_sizeof_uint_least8_t='0'}
+ac_cv_sizeof_uint_least16_t=${ac_cv_sizeof_uint_least16_t='0'}
+ac_cv_sizeof_uint_least32_t=${ac_cv_sizeof_uint_least32_t='0'}
+ac_cv_sizeof_uint_least64_t=${ac_cv_sizeof_uint_least64_t='0'}
+
+# Hard set sizeof_int_fastN_t to 0 because they are not supported.
+ac_cv_sizeof_int_fast8_t=${ac_cv_sizeof_int_fast8_t='0'}
+ac_cv_sizeof_int_fast16_t=${ac_cv_sizeof_int_fast16_t='0'}
+ac_cv_sizeof_int_fast32_t=${ac_cv_sizeof_int_fast32_t='0'}
+ac_cv_sizeof_int_fast64_t=${ac_cv_sizeof_int_fast64_t='0'}
+ac_cv_sizeof_uint_fast8_t=${ac_cv_sizeof_uint_fast8_t='0'}
+ac_cv_sizeof_uint_fast16_t=${ac_cv_sizeof_uint_fast16_t='0'}
+ac_cv_sizeof_uint_fast32_t=${ac_cv_sizeof_uint_fast32_t='0'}
+ac_cv_sizeof_uint_fast64_t=${ac_cv_sizeof_uint_fast64_t='0'}
+