source: general/prog/gc.xml@ d4796f8b

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 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 d4796f8b was d4796f8b, checked in by Ken Moffat <ken@…>, 13 years ago

Tag a few more things that build with 6.7, and check that my subversion-1.6.13 test installation is working.

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

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