diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2005-03-15 16:31:48 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2005-03-15 16:31:48 (GMT) |
commit | 04b7826ed1b59bc7337ba96f99cc8b56d70a945d (patch) | |
tree | 9d517654abb91b43ef3fe6709e937f3080ea497a /config/hpux9.03 | |
parent | d1f8a1e1a96ba73cbd65800b925b17242806cbed (diff) | |
download | hdf5-04b7826ed1b59bc7337ba96f99cc8b56d70a945d.zip hdf5-04b7826ed1b59bc7337ba96f99cc8b56d70a945d.tar.gz hdf5-04b7826ed1b59bc7337ba96f99cc8b56d70a945d.tar.bz2 |
[svn-r10218] Purpose: Bug fix
Description: This commit is actually revision 1.155, which is the 3rd step of
changing conversion test. It's for conversion from floating-point to integer.
In this step, the source buffer is filled in with normalized and denormalized
floating-point values. For the normalized values, it starts from FLT(DBL, or
LDBL)_MIN, multiplied by 10(10000 for double, 100000000 for long double) for
the next value, until reaches to FLT_MAX. For denormalized values, the
exponent part is always 0. Mantissa part starts with 000...001, 000...011,
000...111, until reaches to 111...111. The same is with negative values.
There're also fixes in config/hpux11.00 for kelgia where default macro table
size wasn't big enough to handle the big macro in dtypes.c.
Platforms tested: h5committest and kelgia.
Diffstat (limited to 'config/hpux9.03')
-rw-r--r-- | config/hpux9.03 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/hpux9.03 b/config/hpux9.03 index 6603aab..c3da65f 100644 --- a/config/hpux9.03 +++ b/config/hpux9.03 @@ -25,7 +25,7 @@ case "X-$CC" in ;; *) - CFLAGS="$CFLAGS -Ae" + CFLAGS="$CFLAGS -Ae -Wp,-H65536" #increase the size of macro definition table. For test/dtypes.c DEBUG_CFLAGS=-g DEBUG_CPPFLAGS= PROD_CFLAGS= |