summaryrefslogtreecommitdiffstats
path: root/hl/c++
Commit message (Collapse)AuthorAgeFilesLines
...
* HDFFV-4359 Add HL C++ and fix install parametersAllen Byrne2018-03-081-0/+47
|
* Inc CMake min, Add new tests, rework test CMake filesAllen Byrne2018-02-274-4/+4
|
* HDFFV-10398 use the simpler add_subdirectory signatureAllen Byrne2018-01-301-3/+3
|
* HDFFV-10385 rework java namesAllen Byrne2018-01-172-2/+0
|
* Add library INTERFACE and MPI to toolsAllen Byrne2017-12-281-10/+2
|
* Merge pull request #426 in HDFFV/hdf5 from ~LRKNOX/hdf5_lrk:hdf5_1_10 to ↵Larry Knox2017-04-2513-67/+66
| | | | | | | | | | hdf5_1_10 * commit '54957d37f5aa73912763dbb6e308555e863c43f4': Commit copyright header change for src/H5PLpkg.c which was added after running script to make changes. Add new files in release_docs to MANIFEST. Cimmit changes to Makefile.in(s) and H5PL.c that resulted from running autogen.sh. Merge pull request #407 in HDFFV/hdf5 from ~LRKNOX/hdf5_lrk:hdf5_1_10_1 to hdf5_1_10_1 Change copyright headers to replace url referring to file to be removed and replace it with new url for COPYING file.
* HDFFV-9875 enable static pdb and cleanup exportsAllen Byrne2017-02-031-1/+1
|
* HDFFV-9875 Fix target exports and add static tools pdb filesAllen Byrne2017-02-021-0/+1
|
* HDFFV-10094: upgrade cmake command conventionsAllen Byrne2017-01-112-3/+29
| | | Also converted tests to use macros
* Update cmake min version and cmake command conventionAllen Byrne2017-01-104-10/+10
|
* Description:Binh-Minh Ribler2016-10-261-2/+6
| | | | | | | | | | | - In the test for HDFFV-9758, a pragma pack(1) caused failure on Emu because Sparc cannot access misaligned data. Changed it to pack() to do the default alignment. - Added DOXYGEN_SHOULD_SKIP_THIS blocks to private elements to prevent warnings from doxygen. Platforms tested: SunOS 5.11 (emu) Linux/32 2.6 (jam)
* Description:Binh-Minh Ribler2016-10-241-1/+1
| | | | | | | | User's sample code used "not" instead of "!" and Windows does not like that. Fixed. Platforms tested: Linux/32 2.6 (jam) Darwin (osx1010test)
* Purpose: Fix Packet Table issues cont.Binh-Minh Ribler2016-10-241-17/+21
| | | | | | | | | Description: Misc cleanups and comments in tests. Platforms tested: Linux/32 2.6 (jam) Darwin (osx1010test) Linux/64 (jelly)
* Miscellaneous code cleanup.Binh-Minh Ribler2016-10-211-3/+0
| | | | | | Platforms tested: Linux/32 2.6 (jam) Darwin (osx1010test)
* Description:Binh-Minh Ribler2016-10-202-58/+115
| | | | | | | | | | | | - Removed calls to H5Tget_native_type in the PT code. The application would need to do that if desired. - Added Abhi's program to tests to verify the fix. - This fix might have fixed HDFFV-9927, HDFFV-9042, and the issue reported by Barbara Jones from Ametek as well. Platforms tested: Linux/32 2.6 (jam) Linux/64 (jelly) Darwin (osx1010test)
* Add support for namespace and add tools to binaries configAllen Byrne2016-10-141-2/+3
|
* [svn-r29862] Convert source list names from *_SRCS to *_SOURCES.Allen Byrne2016-05-041-3/+3
| | | | Add/convert most tools to use new HDF5_TOOLS_DIR instead of HDF5_TOOLS_SRC_DIR CMake VAR.
* [svn-r29803] Purpose: Code improvementBinh-Minh Ribler2016-04-263-14/+30
| | | | | | | | | | | | | | Description: The constructor FL_PacketTable added in 1.10.0 did not have good prototype; it didn't allow the property list to be default. Marked it deprecated and added this one: FL_PacketTable(hid_t fileID, const char* name, hid_t dtypeID, hsize_t chunkSize = 0, hid_t plistID = H5P_DEFAULT) Platforms tested: Linux/32 2.6 (jam) Linux/64 (platypus) Darwin (osx1010test)
* [svn-r29796] Purpose: Fix warnings HDFFV-8615Binh-Minh Ribler2016-04-251-3/+14
| | | | | | | | | | | | Description: The "warning: deprecated conversion from string constant to âchar*â [-Wwrite-strings]" was already removed by adding const to char* parameter in the FL_PacketTable. This change is to remove the use of literal strings in code for maintainability. Platforms tested: Linux/32 2.6 (jam) Linux/64 (platypus) Darwin (osx1010test)
* [svn-r29710] Purpose: Code improvementsBinh-Minh Ribler2016-04-152-84/+84
| | | | | | | | | | | Description: - Replaced "goto out" and "out:" with "goto error" and "error:" to indicate the failure situations. - Replaced old-style casts with static_cast to remove warnings. Platforms tested: Linux/32 2.6 (jam) Linux/64 (platypus) Darwin (osx1010test)
* [svn-r29379] Add individual LT_VERS_* variables for wrapper libraries: c++, ↵Larry Knox2016-03-091-1/+1
| | | | | | | | | | | | | | | | fortran, java, hl, hl/c++, hl/fortran to so that the shared object version numbers can be incremented independently. Disabled auto-increment of shared object version numbers by h5vers. Files modified: config/lt_vers.am java/src/jni/Makefile.am hl/src/Makefile.am hl/c++/src/Makefile.am hl/fortran/src/Makefile.am c++/src/Makefile.am bin/h5vers fortran/src/Makefile.am
* [svn-r29364] Purpose: Improve C++ Packet Table libraryBinh-Minh Ribler2016-03-093-229/+159
| | | | | | | | | | | | | | | | | | | | | | Description: Performed similar improvement as the C Packet Table library. - Removed the VLPT_REMOVED ifdef around class VL_PacketTable - Moved VL_PacketTable::IsVariableLength to PacketTable - Moved VL_PacketTable::FreeReadBuff to PacketTable::FreeBuff - Added overloaded constructor to FL_PacketTable that takes a property list ID and call the new C API H5PTcreate. - Added accessor wrappers to class PacketTable, per HDFFV-8623/patch 003. /* Returns the ID of the dataset associated with the packet table */ hid_t GetDataset(); /* Returns the ID of the datatype the packet table uses */ hid_t GetDatatype(); - Replaced appropriate calls in tests - Various cleanup Platforms tested: Linux/32 2.6 (jam) Linux/64 (platypus) Darwin (osx1010test)
* [svn-r29226] HDFFV-9552: merge in java code.Allen Byrne2016-02-291-1/+1
|
* [svn-r27795] Removed some autotools generated files that were not caught byDana Robinson2015-09-151-1429/+0
| | | | | | the last checkin. Tested on: bin/chkmanifest
* [svn-r27794] Reintegration merge of features/autotools_rework branch with trunkDana Robinson2015-09-154-4052/+3
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | NOTES: - Developers will have to run autogen.sh before building with the autotools. - autogen.sh takes the -p option to mimic the old bin/reconfigure behavior. - The generated error, overflow and version headers have been left in place. - The generated H5LT parser code has also been left in place. - There are no changes for CMake users at this time. Tested on: h5committest
| * [svn-r27507] Merge of r27237-27500 from the trunk.Dana Robinson2015-08-143-9/+30
| |\ | | | | | | | | | | | | | | | | | | | | | Tested w/ h5committest NOTES: - The manifest may still be messed up. - Cmake fails since the dual binary work needs to be merged with this repo's CMake externals.
| * \ [svn-r27038] Merge of r26393-27031 from the trunk.Dana Robinson2015-05-075-4/+5
| |\ \ | | | | | | | | | | | | Tested on 64-bit linux VM w/ C++ and Fortran 2003
| * | | [svn-r26422] Fixes autogen.sh errors caused by r26410 that produced:Dana Robinson2015-03-112-12/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | CXX_SHARED_CONDITIONAL does not appear in AM_CONDITIONAL This was due to a removed AM_CONDITIONAL macro in configure.ac. The CXX_SHARED_CONDITIONAL code was removed from the Makefile.am files. Additionally, the C++ shared library build settings field in libhdf5.settings file was updated. Tested on: local linux VM w/ C++ --enable-shared --enable-static --enable-shared --disable-static --disable-shared --enable-static
| * | | [svn-r26274] Merge of r26096 to r26271 from trunk.Dana Robinson2015-02-224-4/+4
| |\ \ \ | | | | | | | | | | | | | | | | | | | | Tested on: jam - serial: C++/Fortran parallel: Fortran
| * | | | [svn-r26097] Removed configure and Makefile.in files from version control.Dana Robinson2015-02-024-5431/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Developers will now have to run bin/reconfigure (deprecated, will be removed soon) or autogen.sh after checking out code. Part of: HDFFV-9120 Tested on: jam with Fortran and C++
| * | | | [svn-r26096] Merged r26024-26095 from trunk.Dana Robinson2015-02-022-2/+2
| |\ \ \ \ | | | | | | | | | | | | | | | | | | Tested on: jam with Fortran and C++
| * | | | | [svn-r26069] Removed the option to selectively disable internal filters like ↵Dana Robinson2015-01-294-20/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | n-bit at compile time. Fixes HDFFV-9086 Tested on: jam, both serial and parallel w/ fortran & C++
| * | | | | [svn-r26051] Fix for HDFFV-9092Scot Breitenfeld2015-01-274-4/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Change AC_TRY_RUN TO AC_TRY_COMPILE Changed all the instances of AC_TRY_RUN for the Fortran and C++ tests to use AC_COMPILE_IFELSE and moved all the tests to new files in m4 directory: aclocal_cxx.m4 (for C++ tests) aclocal_fc.m4 (for Fortran tests) tested: jam
* | | | | | [svn-r27767] Snapshot version 1.9 release 231HDF Tester2015-09-141-1/+1
| | | | | |
* | | | | | [svn-r27690] Snapshot version 1.9 release 230HDF Tester2015-09-071-1/+1
| | | | | |
* | | | | | [svn-r27625] Added preprocessor commands for PGI compiler.Scot Breitenfeld2015-08-314-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | tested: h5committest
* | | | | | [svn-r27622] Snapshot version 1.9 release 229HDF Tester2015-08-311-1/+1
| | | | | |
* | | | | | [svn-r27551] Snapshot version 1.9 release 228HDF Tester2015-08-241-1/+1
| | | | | |
* | | | | | [svn-r27517] Removed all perl scripts from configure.Scot Breitenfeld2015-08-174-4/+0
| | | | | | | | | | | | | | | | | | | | | | | | Tested: h5committest
* | | | | | [svn-r27511] Snapshot version 1.9 release 227HDF Tester2015-08-171-1/+1
| |_|_|_|/ |/| | | |
* | | | | [svn-r27493] Trying again to merge the F2003_v1.10 branch to the trunk.Scot Breitenfeld2015-08-114-18/+94
| | | | | | | | | | | | | | | | | | | | Tested: h5committest --PASSED--
* | | | | [svn-r27489] reverted merge of branchScot Breitenfeld2015-08-114-94/+18
| | | | |
* | | | | [svn-r27470] svn merge -r27425:27460 https://svn.hdfgroup.uiuc.edu/hdf5/trunkScot Breitenfeld2015-08-054-17/+5
|\ \ \ \ \
| * | | | | [svn-r27432] Snapshot version 1.9 release 226HDF Tester2015-07-271-1/+1
| | | | | |
* | | | | | [svn-r27469] Merge from trunk with dual-binary CMake code.Allen Byrne2015-08-057-15/+47
| | | | | | | | | | | | | | | | | | | | | | | | Tested: local linux with CMake
* | | | | | [svn-r27426] svn merge -r27377:27425 https://svn.hdfgroup.uiuc.edu/hdf5/trunkScot Breitenfeld2015-07-221-1/+1
|\ \ \ \ \ \ | |/ / / / /
| * | | | | [svn-r27412] Snapshot version 1.9 release 225HDF Tester2015-07-201-1/+1
| | | | | |
* | | | | | [svn-r27378] svn merge -r27326:27377 https://svn.hdfgroup.uiuc.edu/hdf5/trunkScot Breitenfeld2015-07-142-3/+4
|\ \ \ \ \ \ | |/ / / / /
| * | | | | [svn-r27372] Snapshot version 1.9 release 224HDF Tester2015-07-131-1/+1
| | | | | |
| * | | | | [svn-r27364] Add Mac Framework supportAllen Byrne2015-07-091-2/+3
| | | | | |