Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/google/double-conversion
Efficient binary-decimal and decimal-binary conversion routines for IEEE doubles.
https://github.com/google/double-conversion
Last synced: 30 days ago
JSON representation
Efficient binary-decimal and decimal-binary conversion routines for IEEE doubles.
- Host: GitHub
- URL: https://github.com/google/double-conversion
- Owner: google
- License: bsd-3-clause
- Created: 2014-10-18T12:48:15.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2024-05-21T08:45:12.000Z (6 months ago)
- Last Synced: 2024-05-29T16:16:34.344Z (6 months ago)
- Language: C++
- Size: 6.81 MB
- Stars: 1,084
- Watchers: 68
- Forks: 280
- Open Issues: 18
-
Metadata Files:
- Readme: README.md
- Changelog: Changelog
- License: COPYING
- Authors: AUTHORS
Awesome Lists containing this project
README
Double Conversion
========
https://github.com/google/double-conversion[![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/google/double-conversion/badge)](https://securityscorecards.dev/viewer/?uri=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][0] or [cmake][1].
The checked-in Makefile simply forwards to scons, and provides a
shortcut to run all tests:make
make testScons
-----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[0]: http://www.scons.org/
[1]: https://cmake.org/