summaryrefslogtreecommitdiffstats
path: root/config/intel-osf1
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2003-05-29 15:53:34 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2003-05-29 15:53:34 (GMT)
commita36d2638ced5ea2c2890fb44234954c97ba29aba (patch)
treec9624e3a1c30911c2ea26386d29a610d6b7f1cef /config/intel-osf1
parent7f54723d9948914dd56f55096fa79e56a3242d8f (diff)
downloadhdf5-a36d2638ced5ea2c2890fb44234954c97ba29aba.zip
hdf5-a36d2638ced5ea2c2890fb44234954c97ba29aba.tar.gz
hdf5-a36d2638ced5ea2c2890fb44234954c97ba29aba.tar.bz2
[svn-r6923] Purpose:
Speed up Description: Cache the settings of all number types to save configure time. Reduced configure time by a whopping 40% (11m to 7m :-) Platforms tested: Sasn100 only (janus frontend.)
Diffstat (limited to 'config/intel-osf1')
-rw-r--r--config/intel-osf150
1 files changed, 50 insertions, 0 deletions
diff --git a/config/intel-osf1 b/config/intel-osf1
index 0bae488..ea65b6f 100644
--- a/config/intel-osf1
+++ b/config/intel-osf1
@@ -54,13 +54,47 @@ 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'}
+# Cache the sizeof of the following types to save configure time.
+# These are verified in test/tconfig in case they change.
+ac_cv_type_char=${ac_cv_type_char=yes}
+ac_cv_sizeof_char=${ac_cv_sizeof_char='1'}
+ac_cv_type_short=${ac_cv_type_short=yes}
+ac_cv_sizeof_short=${ac_cv_sizeof_short='2'}
+ac_cv_type_int=${ac_cv_type_int=yes}
+ac_cv_sizeof_int=${ac_cv_sizeof_int='4'}
+ac_cv_type_long=${ac_cv_type_long=yes}
+ac_cv_sizeof_long=${ac_cv_sizeof_long='4'}
+ac_cv_type_float=${ac_cv_type_float=yes}
+ac_cv_sizeof_float=${ac_cv_sizeof_float='4'}
+ac_cv_type_double=${ac_cv_type_double=yes}
+ac_cv_sizeof_double=${ac_cv_sizeof_double='8'}
+ac_cv_type_long_double=${ac_cv_type_long_double=yes}
+ac_cv_sizeof_long_double=${ac_cv_sizeof_long_double='8'}
+ac_cv_type_long_long=${ac_cv_type_long_long=yes}
+ac_cv_sizeof_long_long=${ac_cv_sizeof_long_long='8'}
+ac_cv_type_size_t=${ac_cv_type_size_t=yes}
+ac_cv_sizeof_size_t=${ac_cv_sizeof_size_t='4'}
+ac_cv_type_ssize_t=${ac_cv_type_ssize_t=yes}
+ac_cv_sizeof_ssize_t=${ac_cv_sizeof_ssize_t='4'}
+ac_cv_type_off_t=${ac_cv_type_off_t=yes}
+ac_cv_sizeof_off_t=${ac_cv_sizeof_off_t='4'}
+
# Hard set sizeof of the following types to 0 because they are not supported.
+ac_cv_type___int64=${ac_cv_type___int64=no}
ac_cv_sizeof___int64=${ac_cv_sizeof___int64='0'}
# Hard set malloc of zero bytes to no because it does not work.
hdf5_cv_malloc_works=${hdf5_cv_malloc_works='no'}
# Hard set sizeof_intN_t to 0 because they are not supported.
+ac_cv_type_int8_t=${ac_cv_type_int8_t=no}
+ac_cv_type_int16_t=${ac_cv_type_int16_t=no}
+ac_cv_type_int32_t=${ac_cv_type_int32_t=no}
+ac_cv_type_int64_t=${ac_cv_type_int64_t=no}
+ac_cv_type_uint8_t=${ac_cv_type_uint8_t=no}
+ac_cv_type_uint16_t=${ac_cv_type_uint16_t=no}
+ac_cv_type_uint32_t=${ac_cv_type_uint32_t=no}
+ac_cv_type_uint64_t=${ac_cv_type_uint64_t=no}
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'}
@@ -71,6 +105,14 @@ ac_cv_sizeof_uint32_t=${ac_cv_sizeof_uint32_t='0'}
ac_cv_sizeof_uint64_t=${ac_cv_sizeof_uint64_t='0'}
# Hard set sizeof_int_leastN_t to 0 because they are not supported.
+ac_cv_type_int_least8_t=${ac_cv_type_int_least8_t=no}
+ac_cv_type_int_least16_t=${ac_cv_type_int_least16_t=no}
+ac_cv_type_int_least32_t=${ac_cv_type_int_least32_t=no}
+ac_cv_type_int_least64_t=${ac_cv_type_int_least64_t=no}
+ac_cv_type_uint_least8_t=${ac_cv_type_uint_least8_t=no}
+ac_cv_type_uint_least16_t=${ac_cv_type_uint_least16_t=no}
+ac_cv_type_uint_least32_t=${ac_cv_type_uint_least32_t=no}
+ac_cv_type_uint_least64_t=${ac_cv_type_uint_least64_t=no}
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'}
@@ -81,6 +123,14 @@ 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_type_int_fast8_t=${ac_cv_type_int_fast8_t=no}
+ac_cv_type_int_fast16_t=${ac_cv_type_int_fast16_t=no}
+ac_cv_type_int_fast32_t=${ac_cv_type_int_fast32_t=no}
+ac_cv_type_int_fast64_t=${ac_cv_type_int_fast64_t=no}
+ac_cv_type_uint_fast8_t=${ac_cv_type_uint_fast8_t=no}
+ac_cv_type_uint_fast16_t=${ac_cv_type_uint_fast16_t=no}
+ac_cv_type_uint_fast32_t=${ac_cv_type_uint_fast32_t=no}
+ac_cv_type_uint_fast64_t=${ac_cv_type_uint_fast64_t=no}
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'}