source: general/genlib/double-conversion.xml@ eede1a3

11.0 11.1 11.2 11.3 12.0 12.1 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts lazarus lxqt plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since eede1a3 was 45ab6c7, checked in by Xi Ruoyao <xry111@…>, 3 years ago

more SVN prop clean up

Remove "$LastChanged$" everywhere, and also some unused $Date$

  • Property mode set to 100644
File size: 4.8 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY double-conversion-download-http "https://github.com/google/double-conversion/archive/v&double-conversion-version;/double-conversion-&double-conversion-version;.tar.gz">
8 <!ENTITY double-conversion-download-ftp " ">
9 <!ENTITY double-conversion-md5sum "e94d3a33a417e692e5600e75019f0272">
10 <!ENTITY double-conversion-size "6.7 MB">
11 <!ENTITY double-conversion-buildsize "54 MB">
12 <!ENTITY double-conversion-time "0.1 SBU">
13
14]>
15
16<sect1 id="double-conversion" xreflabel="double-conversion-&double-conversion-version;">
17 <?dbhtml filename="double-conversion.html"?>
18
19 <sect1info>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>Double-conversion-&double-conversion-version;</title>
24
25 <indexterm zone="double-conversion">
26 <primary sortas="a-double-conversion">double-conversion</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to Double-conversion</title>
31
32 <para>
33 The <application>Double-conversion</application> package contains a
34 library that facilitates binary-to-decimal and decimal-to-binary routines
35 for IEEE doubles.
36 </para>
37
38 &lfs101_checked;
39
40 <bridgehead renderas="sect3">Package Information</bridgehead>
41 <itemizedlist spacing="compact">
42 <listitem>
43 <para>
44 Download (HTTP): <ulink url="&double-conversion-download-http;"/>
45 </para>
46 </listitem>
47 <listitem>
48 <para>
49 Download (FTP): <ulink url="&double-conversion-download-ftp;"/>
50 </para>
51 </listitem>
52 <listitem>
53 <para>
54 Download MD5 sum: &double-conversion-md5sum;
55 </para>
56 </listitem>
57 <listitem>
58 <para>
59 Download size: &double-conversion-size;
60 </para>
61 </listitem>
62 <listitem>
63 <para>
64 Estimated disk space required: &double-conversion-buildsize;
65 </para>
66 </listitem>
67 <listitem>
68 <para>
69 Estimated build time: &double-conversion-time;
70 </para>
71 </listitem>
72 </itemizedlist>
73
74 <bridgehead renderas="sect3">Double-conversion Dependencies</bridgehead>
75
76 <bridgehead renderas="sect4">Required</bridgehead>
77 <para role="required">
78 <xref linkend="cmake"/>
79 </para>
80
81 <para condition="html" role="usernotes">
82 User Notes: <ulink url="&blfs-wiki;/double-conversion"/>
83 </para>
84 </sect2>
85
86 <sect2 role="installation">
87 <title>Installation of Double-conversion</title>
88
89 <para>
90 Install <application>Double-conversion</application> by running the following
91 commands:
92 </para>
93
94
95<screen><userinput>mkdir build &amp;&amp;
96cd build &amp;&amp;
97
98cmake -DCMAKE_INSTALL_PREFIX=/usr \
99 -DBUILD_SHARED_LIBS=ON \
100 -DBUILD_TESTING=ON \
101 .. &amp;&amp;
102make</userinput></screen>
103
104 <para>
105 To test the results, issue: <command>make test</command>.
106 </para>
107
108 <para>
109 Now, as the <systemitem class="username">root</systemitem> user:
110 </para>
111
112<screen role="root"><userinput>make install</userinput></screen>
113 </sect2>
114
115 <sect2 role="commands">
116 <title>Command Explanations</title>
117
118 <para>
119 <parameter>-DBUILD_SHARED_LIBS=ON</parameter>: This switch forces cmake to build
120 a shared version of the library instead of the static version.
121 </para>
122
123 <para>
124 <parameter>-DBUILD_TESTING=ON</parameter>: This switch builds the test programs.
125 </para>
126 </sect2>
127
128 <sect2 role="content">
129 <title>Contents</title>
130
131 <segmentedlist>
132 <segtitle>Installed Programs</segtitle>
133 <segtitle>Installed Libraries</segtitle>
134 <segtitle>Installed Directories</segtitle>
135
136 <seglistitem>
137 <seg>
138 None
139 </seg>
140 <seg>
141 libdouble-conversion.so
142 </seg>
143 <seg>
144 /usr/include/double-conversion
145 </seg>
146 </seglistitem>
147 </segmentedlist>
148
149 <variablelist>
150 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
151 <?dbfo list-presentation="list"?>
152 <?dbhtml list-presentation="table"?>
153
154 <varlistentry id="libdouble-conversion">
155 <term><filename class="libraryfile">libdouble-conversion.so</filename></term>
156 <listitem>
157 <para>
158 provides binary-to-decimal and decimal-to-binary routines for IEEE doubles
159 </para>
160 <indexterm zone="double-conversion libdouble-conversion">
161 <primary sortas="c-libdouble-conversion">libdouble-conversion.so</primary>
162 </indexterm>
163 </listitem>
164 </varlistentry>
165 </variablelist>
166 </sect2>
167
168</sect1>
Note: See TracBrowser for help on using the repository browser.