diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2001-10-26 15:55:46 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2001-10-26 15:55:46 (GMT) |
commit | 6f6eca2c04bc5482ca9756f6af6678c394f40948 (patch) | |
tree | 7d9b8503fb31615368afd424385f5d42e53cedbd /config | |
parent | ed123d7555b3bf305d3cf8e27a30622d1fe1b861 (diff) | |
download | hdf5-6f6eca2c04bc5482ca9756f6af6678c394f40948.zip hdf5-6f6eca2c04bc5482ca9756f6af6678c394f40948.tar.gz hdf5-6f6eca2c04bc5482ca9756f6af6678c394f40948.tar.bz2 |
[svn-r4576] Purpose:
Bug fix
Description:
When compiled with the -g flag (for debugging), the incremental linker
causes problems when building the H5detect utility.
Solution:
Turn off the incremental linker (with the -xildoff flag) when compiling
for debugging.
Platforms tested:
Solaris 2.8/64 (houdin)
Diffstat (limited to 'config')
-rw-r--r-- | config/solaris2.x | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/solaris2.x b/config/solaris2.x index d794d11..3dc2085 100644 --- a/config/solaris2.x +++ b/config/solaris2.x @@ -18,7 +18,7 @@ fi # Try solaris native compiler flags if test "X-" = "X-$cc_flags_set"; then CFLAGS="-erroff=%none -DBSD_COMP" - DEBUG_CFLAGS=-g + DEBUG_CFLAGS=-g -xildoff DEBUG_CPPFLAGS= PROD_CFLAGS="-O -s" PROD_CPPFLAGS= |