Bug: 259118981

Clone this repo:
  1. 7d5f7f2 fix typo of doubleconversion library name am: 4eb7125b4b am: a9e7a7201d by qiaoli · 10 months ago main master
  2. a9e7a72 fix typo of doubleconversion library name am: 4eb7125b4b by qiaoli · 10 months ago busytown-mac-infra-release main-16k-with-phones android-u-beta-1-gpl platform-tools-33.0.4 platform-tools-34.0.0 platform-tools-34.0.1 platform-tools-34.0.3
  3. 29dcf77 Import double-conversion into AOSP am: a82728e078 am: cdff70387c by qiaoli · 10 months ago
  4. 4eb7125 fix typo of doubleconversion library name by qiaoli · 10 months ago
  5. cdff703 Import double-conversion into AOSP am: a82728e078 by qiaoli · 10 months ago

https://github.com/google/double-conversion

This project (double-conversion) provides binary-decimal and decimal-binary routines for IEEE doubles.

The library consists of efficient conversion routines that have been extracted from the V8 JavaScript engine. The code has been refactored and improved so that it can be used more easily in other projects.

There is extensive documentation in double-conversion/string-to-double.h and double-conversion/double-to-string.h. Other examples can be found in test/cctest/test-conversions.cc.

Building

This library can be built with scons or cmake. The checked-in Makefile simply forwards to scons, and provides a shortcut to run all tests:

make
make test

Scons

The easiest way to install this library is to use scons. It builds the static and shared library, and is set up to install those at the correct locations:

scons install

Use the DESTDIR option to change the target directory:

scons DESTDIR=alternative_directory install

Cmake

To use cmake run cmake . in the root directory. This overwrites the existing Makefile.

Use -DBUILD_SHARED_LIBS=ON to enable the compilation of shared libraries. Note that this disables static libraries. There is currently no way to build both libraries at the same time with cmake.

Use -DBUILD_TESTING=ON to build the test executable.

cmake . -DBUILD_TESTING=ON
make
test/cctest/cctest