Double-conversion-3.3.0

Double-conversion の概要

The Double-conversion package contains a library that facilitates binary-to-decimal and decimal-to-binary routines for IEEE doubles.

[注記]

注記

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

パッケージ情報

Double-conversion の依存パッケージ

必須

CMake-3.28.1

Double-conversion のインストール

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

mkdir build &&
cd    build &&

cmake -DCMAKE_INSTALL_PREFIX=/usr \
      -DBUILD_SHARED_LIBS=ON      \
      -DBUILD_TESTING=ON          \
      ..                          &&
make

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

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

make install

コマンド説明

-DBUILD_SHARED_LIBS=ON: This switch forces cmake to build a shared version of the library instead of the static version.

-DBUILD_TESTING=ON: This switch builds the test programs.

パッケージ構成

インストールプログラム: なし
インストールライブラリ: libdouble-conversion.so
インストールディレクトリ: /usr/include/double-conversion

概略説明

libdouble-conversion.so

provides binary-to-decimal and decimal-to-binary routines for IEEE doubles