commit | 1921cb379da8acd268865f258d519432ee690aa6 | [log] [tgz] |
---|---|---|
author | Florian Loitsch <floitsch@google.com> | Sat Mar 04 17:02:54 2017 +0100 |
committer | Florian Loitsch <floitsch@google.com> | Sat Mar 04 17:02:54 2017 +0100 |
tree | cb488f7a73eefe110cc82f6b4e94702b7d6bafd2 | |
parent | d8d4e668ee1e6e10b728f0671a89b07d7c4d45be [diff] |
Avoid negative shift. When filling in fractional digits in a fixed representation we might use all existing digits. When this happens, we can not look at the next digit to see if we should round up. Before this fix, we tried to shift by a negative amount to see if the (non-existing) next bit was set to 1 (requiring the number to be rounded up). Fixes #41.
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/double-conversion.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 --list | tr -d '<' | xargs test/cctest/cctest