source: general/prog/gc.xml@ fb2079c

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.2 6.2.0 6.2.0-rc1 6.2.0-rc2 6.3 6.3-rc1 6.3-rc2 6.3-rc3 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since fb2079c was fb2079c, checked in by Bruce Dubbs <bdubbs@…>, 18 years ago

Updated to gc-6.6

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@5961 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 5.7 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
3 "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY gc-download-http "http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/gc&gc-version;.tar.gz">
8 <!ENTITY gc-download-ftp "ftp://ftp.fu-berlin.de/unix/linux/mirrors/gentoo/distfiles/gc&gc-version;.tar.gz">
9 <!ENTITY gc-md5sum "c7c301e8fab8ce152c908b05bc8d452c">
10 <!ENTITY gc-size "744 KB">
11 <!ENTITY gc-buildsize "7.1 MB">
12 <!ENTITY gc-time "0.2 SBU">
13]>
14
15<sect1 id="gc" xreflabel="GC-&gc-version;">
16 <?dbhtml filename="gc.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 <keywordset>
22 <keyword role="package">gc&gc-version;.tar</keyword>
23 <keyword role="ftpdir">gc</keyword>
24 </keywordset>
25 </sect1info>
26
27 <title>GC-&gc-version;</title>
28
29 <indexterm zone="gc">
30 <primary sortas="a-GC">GC</primary>
31 </indexterm>
32
33 <sect2 role="package">
34 <title>Introduction to GC</title>
35
36 <para>The <application>GC</application> package contains the
37 Boehm-Demers-Weiser conservative garbage collector, which can be used as a
38 garbage collecting replacement for the C malloc function or C++ new
39 operator. It allows you to allocate memory basically as you normally would,
40 without explicitly deallocating memory that is no longer useful. The
41 collector automatically recycles memory when it determines that it can no
42 longer be otherwise accessed. The collector is also used by a number of
43 programming language implementations that either use C as intermediate
44 code, want to facilitate easier interoperation with C libraries, or just
45 prefer the simple collector interface. Alternatively, the garbage collector
46 may be used as a leak detector for C or C++ programs, though that is not
47 its primary goal.</para>
48
49 <bridgehead renderas="sect3">Package Information</bridgehead>
50 <itemizedlist spacing="compact">
51 <listitem>
52 <para>Download (HTTP): <ulink url="&gc-download-http;"/></para>
53 </listitem>
54 <listitem>
55 <para>Download (FTP): <ulink url="&gc-download-ftp;"/></para>
56 </listitem>
57 <listitem>
58 <para>Download MD5 sum: &gc-md5sum;</para>
59 </listitem>
60 <listitem>
61 <para>Download size: &gc-size;</para>
62 </listitem>
63 <listitem>
64 <para>Estimated disk space required: &gc-buildsize;</para>
65 </listitem>
66 <listitem>
67 <para>Estimated build time: &gc-time;</para>
68 </listitem>
69 </itemizedlist>
70
71 <para condition="html" role="usernotes">User Notes:
72 <ulink url="&blfs-wiki;/gc"/></para>
73
74 </sect2>
75
76 <sect2 role="installation">
77 <title>Installation of GC</title>
78
79 <para>Install <application>GC</application> by running the following
80 commands:</para>
81
82<screen><userinput>sed -i "s|\$(datadir)/@PACKAGE@|&amp;-&gc-version;|" doc/Makefile.in &amp;&amp;
83./configure --prefix=/usr \
84 --datadir=/usr/share/doc --enable-cplusplus &amp;&amp;
85make</userinput></screen>
86
87 <para>To test the results, issue: <command>make check</command>.</para>
88
89 <para>Now, as the <systemitem class="username">root</systemitem> user:</para>
90
91<screen role="root"><userinput>make install &amp;&amp;
92install -v -m644 doc/gc.man /usr/share/man/man3/gc_malloc.3 &amp;&amp;
93ln -v -s gc_malloc.3 /usr/share/man/man3/gc.3</userinput></screen>
94
95 </sect2>
96
97 <sect2 role="commands">
98 <title>Command Explanations</title>
99
100 <para><command>sed -i "s|\$(datadir)/@PACKAGE@|&amp;-&gc-version;|" ...</command>:
101 This command appends <quote>-&gc-version;</quote> to the default documentation
102 installation path of
103 <filename class='directory'>/usr/share/doc/gc</filename>.</para>
104
105 <para><parameter>--datadir=/usr/share/doc</parameter>: This parameter
106 changes the installation path of the documentation to
107 <filename class='directory'>/usr/share/doc/gc</filename> instead of
108 <filename class='directory'>/usr/share/gc</filename>.</para>
109
110 <para><parameter>--enable-cplusplus</parameter>: This parameter forces
111 the building and installation of the C++ library along with the standard
112 C library.</para>
113
114 </sect2>
115
116 <sect2 role="content">
117 <title>Contents</title>
118
119 <segmentedlist>
120 <segtitle>Installed Programs</segtitle>
121 <segtitle>Installed Libraries</segtitle>
122 <segtitle>Installed Directories</segtitle>
123
124 <seglistitem>
125 <seg>None</seg>
126 <seg>libgc.{so,a} and libgccpp.{so,a}</seg>
127 <seg>/usr/include/gc and /usr/share/doc/gc-&gc-version;</seg>
128 </seglistitem>
129 </segmentedlist>
130
131 <variablelist>
132 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
133 <?dbfo list-presentation="list"?>
134 <?dbhtml list-presentation="table"?>
135
136 <varlistentry id="libgc">
137 <term><filename class='libraryfile'>libgc.{so,a}</filename></term>
138 <listitem>
139 <para>contains a C interface to the conservative garbage collector,
140 primarily designed to replace the C malloc function.</para>
141 <indexterm zone="gc libgc">
142 <primary sortas="c-libgc">libgc.{so,a}</primary>
143 </indexterm>
144 </listitem>
145 </varlistentry>
146
147 <varlistentry id="libgccpp">
148 <term><filename class='libraryfile'>libgccpp.{so,a}</filename></term>
149 <listitem>
150 <para>contains a C++ interface to the conservative garbage
151 collector.</para>
152 <indexterm zone="gc libgccpp">
153 <primary sortas="c-libgccpp">libgccpp.{so,a}</primary>
154 </indexterm>
155 </listitem>
156 </varlistentry>
157
158 </variablelist>
159
160 </sect2>
161
162</sect1>
Note: See TracBrowser for help on using the repository browser.