File: UG_UseWith18.html

package info (click to toggle)
hdf5 1.8.13%2Bdocs-15
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 171,520 kB
  • sloc: ansic: 387,158; f90: 35,195; sh: 20,035; xml: 17,780; cpp: 13,516; makefile: 1,487; perl: 1,299; yacc: 327; lex: 178; ruby: 37
file content (70 lines) | stat: -rw-r--r-- 2,506 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<html>
<head>
<title>Using This Guide with HDF5 Release 1.8.x</title>
</head>

<body>

<h1>Using This Guide with HDF5 Release 1.8.x</h1>


Several sections describing new features introduced with HDF5 Release 1.8.x
have been added to this <cite>HDF5 User's Guide</cite>:
<ul>
    <li>N-bit and scale/offset filters, in the chapter
        &ldquo;<a href="10_Datasets.html">HDF5 Datasets</a>&rdquo;
    <li>New Error API functions, H5E, in the chapter
        &ldquo;<a href="13_ErrorHandling.html">HDF5 Error Handling</a>&rdquo;
    <li>Metadata caching, in the chapter
        &ldquo;<a href="17_SpecialTopics.html">Special Topics</a>&rdquo;
</ul>

<p>
Other work to bring the <cite>Guide</cite> up to date with 
the HDF5 Release 1.8.x series remains to be done.
Readers should keep the following things in mind:
<ul>
    <li>Principles and models described in the <cite>Guide</cite> 
        remain applicable to the 1.8.x series.
    <li>The function summaries in several chapters are incomplete for
        the 1.8.x series.  Refer to the 
        <a href="../RM/RM_H5Front.html"><cite>HDF5 Reference Manual</cite></a>
        for complete lists.
    <li>Code examples use function syntax from the 1.6.x release series.
        See the note below regarding the use of 1.6.x syntax with a
        1.8.x version of the HDF5 Library.
</ul>
   
<p>&nbsp;
<hr>
<h3>Using 1.6.x syntax with the 1.8.x library</h3>

HDF5 Release 1.8.x includes an API compatibility feature that enables 
codes written with 1.6.x function syntax to be compiled against and 
linked with an HDF5 Release 1.8.x Library.

<p>
When working with an installed version of the HDF5 Library that has 
been built with default settings, use the
<a href="../RM/Tools.html#Tools-H5CC"><code>h5cc</code></a> 
script and the <code>-DH5_USE_16_API</code> flag
to compile and link your C program as follows:
<pre>
    h5cc &lt;<i>other_instructions</i>&gt; -DH5_USE_16_API . . .
</pre>
A comparable script,
<a href="../RM/Tools.html#Tools-H5FC"><code>h5fc</code></a>, 
is provided for Fortran programs.
<!-- FOR USE WITH PRINT VERSION ----------------------------------------
<code>h5cc</code> and <code>h5fc</code> are described 
in the &ldquo;Tools&rdquo; section 
of the <cite>HDF5 Reference Manual</cite>.
<!-- FOR USE WITH PRINT VERSION ---------------------------------------->

<p>
For further details or alternate approaches, see 
&ldquo;<a href="../RM/APICompatMacros.html">API Compatibility Macros 
in HDF5</a>.&rdquo;

</body>
</html>