diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2001-10-26 15:57:11 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2001-10-26 15:57:11 (GMT) |
commit | c6376bf706d26857f853719f6057b3b645156d99 (patch) | |
tree | c74476d8d038840c4f5bda3a53fb9b95655360d3 /config/solaris2.x | |
parent | 48ced9fab2168027e49eaa2f73ec85a7b5947a17 (diff) | |
download | hdf5-c6376bf706d26857f853719f6057b3b645156d99.zip hdf5-c6376bf706d26857f853719f6057b3b645156d99.tar.gz hdf5-c6376bf706d26857f853719f6057b3b645156d99.tar.bz2 |
[svn-r4577] 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/solaris2.x')
-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= |