diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2004-02-18 22:27:04 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2004-02-18 22:27:04 (GMT) |
commit | c23d11475e0eac5c0bc10f7ed075f8c62c9072ea (patch) | |
tree | daaf6244dc4fd942437f09ce867f2b76b66674f7 | |
parent | aa0e780842aee43c1647620b70239f51b1b236ae (diff) | |
download | hdf5-c23d11475e0eac5c0bc10f7ed075f8c62c9072ea.zip hdf5-c23d11475e0eac5c0bc10f7ed075f8c62c9072ea.tar.gz hdf5-c23d11475e0eac5c0bc10f7ed075f8c62c9072ea.tar.bz2 |
[svn-r8211] Purpose:
Bug fix.
Description:
The -g in H5detect somehow does not work with 64bit mpicc in arabica.
Remove it for now for better solution.
Platforms tested:
no test as the change is trivia.
Misc. update:
-rw-r--r-- | src/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index 4daf99b..a448175 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -88,7 +88,7 @@ H5Tinit.c: H5detect ## a long time to compile it with any optimization on. H5detect is used ## to generate H5Tinit.c once. So, optimization is not critical. H5detect: $(srcdir)/H5detect.c - $(CC) $(CFLAGS) $(CPPFLAGS) -g $(srcdir)/H5detect.c \ + $(CC) $(CFLAGS) $(CPPFLAGS) $(srcdir)/H5detect.c \ $(LDFLAGS) $(LIBS) -o $@ |