| commit | b9f940f0666bbc301156fe5a6be934e1fc72fcf8 | [log] [tgz] |
|---|---|---|
| author | Xin Li <[email protected]> | Fri Dec 20 13:39:36 2024 -0800 |
| committer | Xin Li <[email protected]> | Fri Dec 20 13:39:36 2024 -0800 |
| tree | 7454fe58896b6a762c646701a8088412df352c88 | |
| parent | ee2ccd81d5c86bf36946d9704e191ceab063f4ad [diff] | |
| parent | 71cd593f10b026952f5ff803460d640f034ef169 [diff] |
Empty merge ab/12770256 into aosp-main-future Merged-In: I6bda6fd8b79941b1867b5bb8408bdb6052820bdc Change-Id: I95076d242847f4d1d1f152727c94550f1f07dee6
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.
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
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
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