GC-8.2.4

GC の概要

The GC package contains the Boehm-Demers-Weiser conservative garbage collector, which can be used as a garbage collecting replacement for the C malloc function or C++ new operator. It allows you to allocate memory basically as you normally would, without explicitly deallocating memory that is no longer useful. The collector automatically recycles memory when it determines that it can no longer be otherwise accessed. The collector is also used by a number of programming language implementations that either use C as intermediate code, want to facilitate easier interoperation with C libraries, or just prefer the simple collector interface. Alternatively, the garbage collector may be used as a leak detector for C or C++ programs, though that is not its primary goal.

[注記]

注記

LFS や依存パッケージが本ブックに示す最新安定バージョンでなかった場合には、BLFS 開発版においては、パッケージのビルドや処理実行が適切に行われないことがあります。

パッケージ情報

任意

libatomic_ops-7.8.2

GC のインストール

以下のコマンドを実行して GC をビルドします。

./configure --prefix=/usr      \
            --enable-cplusplus \
            --disable-static   \
            --docdir=/usr/share/doc/gc-8.2.4 &&
make

ビルド結果をテストする場合は make check を実行します。

root ユーザーになって以下を実行します。

make install &&
install -v -m644 doc/gc.man /usr/share/man/man3/gc_malloc.3

コマンド説明

--docdir=/usr/share/doc/gc-8.2.4: This option is used so the package will install the documentation in a versioned directory.

--enable-cplusplus: This parameter enables the building and installing of the C++ library along with the standard C library.

--disable-static: このスイッチはスタティックライブラリをインストールしないようにします。

パッケージ構成

インストールプログラム: なし
インストールライブラリ: libcord.so, libgc.so, libgccpp.so, libgctba.so
インストールディレクトリ: /usr/include/gc, /usr/share/doc/gc-8.2.4

概略説明

libcord.so

contains a tree-based string library

libgc.so

contains a C interface to the conservative garbage collector, primarily designed to replace the C malloc function

libgccpp.so

contains a C++ interface to the conservative garbage collector

libgctba.so

contains a C++ interface to throw bad allocations