Skip to content

Commit

Permalink
Intermediate changes
Browse files Browse the repository at this point in the history
commit_hash:f53fe2f4dc9bd145aafbd80b16163b15a3aaad11
  • Loading branch information
robot-piglet committed Feb 23, 2025
1 parent 3e4a455 commit 5a44339
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 3 deletions.
24 changes: 23 additions & 1 deletion contrib/libs/double-conversion/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
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.

Expand All @@ -15,7 +19,7 @@ There is extensive documentation in `double-conversion/string-to-double.h` and
Building
========

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

Expand Down Expand Up @@ -51,5 +55,23 @@ Use `-DBUILD_TESTING=ON` to build the test executable.
make
test/cctest/cctest

Bazel
---

The simplest way to adopt this library is through the [Bazel Central Registry](https://registry.bazel.build/modules/double-conversion).

To build the library from the latest repository, run:

```
bazel build //:double-conversion
```

To run the unit test, run:

```
bazel test //:cctest
```

[0]: http://www.scons.org/
[1]: https://cmake.org/
[2]: https://bazel.build/
4 changes: 2 additions & 2 deletions contrib/libs/double-conversion/ya.make
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ LICENSE(BSD-3-Clause)

LICENSE_TEXTS(.yandex_meta/licenses.list.txt)

VERSION(3.3.0)
VERSION(3.3.1)

ORIGINAL_SOURCE(https://github.com/google/double-conversion/archive/v3.3.0.tar.gz)
ORIGINAL_SOURCE(https://github.com/google/double-conversion/archive/v3.3.1.tar.gz)

ADDINCL(
GLOBAL contrib/libs/double-conversion
Expand Down

0 comments on commit 5a44339

Please sign in to comment.