2021-04-30 12:32:17 by Adam Ciarcinski | Files touched by this commit (4) | |
Log message:
abseil: updated to 20210324.1
Abseil LTS 20210324.1
What's New:
The cleanup library has been released. This library contains the \
control-flow-construct-like type absl::Cleanup which is used for executing a \
callback on scope exit.
The numeric library now includes bits.h, a polyfill header containing \
implementations of C++20's bitwise math functions.
Abseil now installs pkg-config files to make it easier to use Abseil with some \
other build systems.
Abseil now respects the default CMake installation paths. Standard CMake \
variables like CMAKE_INSTALL_PREFIX can be used to change the installation path.
Breaking Changes:
The empty absl::container target has been removed from the CMake build. This \
target had no effect and references to this target in user code can safely be \
removed.
|
2021-01-31 14:02:06 by Havard Eidnes | Files touched by this commit (1) |
Log message:
Include ../../mk/atomic64.mk so that we don't end up with
undefined 8-byte atomics on i386, seen when linking e.g. grpc.
|
2021-01-21 18:25:35 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
abseil: updated to 20200923.3
Abseil LTS 20200923, Patch 3
What's New:
absl::StatusOr<T> has been released. See our blog
post for more information.
Abseil Flags reflection interfaces have been released.
Abseil Flags memory usage has been significantly optimized.
Abseil now supports a "hardened" build mode. This build mode enables
runtime checks that guard against programming errors that may lead
to security vulnerabilities.
Notable Fixes:
Sanitizer dynamic annotations like AnnotateRWLockCreate that are
also defined by the compiler sanitizer implementation are no longer
also defined by Abseil.
Sanitizer macros are now prefixed with ABSL_ to avoid naming collisions.
Sanitizer usage is now automatically detected and no longer requires
macros like ADDRESS_SANITIZER to be defined on the command line.
Breaking Changes:
Abseil no longer contains a dynamic_annotations library. Users
using a supported build system (Bazel or CMake) are unaffected by
this, but users manually specifying link libraries may get an error
about a missing linker input.
|
2020-12-07 09:01:52 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
abseil: updated to 20200923.2
Abseil LTS 20200923, Patch 2
What's New:
absl::StatusOr<T> has been released. See our blog
post for more information.
Abseil Flags reflection interfaces have been released.
Abseil Flags memory usage has been significantly optimized.
Abseil now supports a "hardened" build mode. This build mode enables
runtime checks that guard against programming errors that may lead
to security vulnerabilities.
Notable Fixes:
Sanitizer dynamic annotations like AnnotateRWLockCreate that are
also defined by the compiler sanitizer implementation are no longer
also defined by Abseil.
Sanitizer macros are now prefixed with ABSL_ to avoid naming collisions.
Sanitizer usage is now automatically detected and no longer requires
macros like ADDRESS_SANITIZER to be defined on the command line.
Breaking Changes:
Abseil no longer contains a dynamic_annotations library. Users
using a supported build system (Bazel or CMake) are unaffected by
this, but users manually specifying link libraries may get an error
about a missing linker input.
|
2020-04-23 12:45:30 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
abseil: updated to 20200225.2
20200225.2:
This release fixes the list of dependencies of absl::Cord in the CMake build.
|
2020-03-15 23:25:56 by Adam Ciarcinski | Files touched by this commit (6) | |
Log message:
abseil: updated to 20200225.1
20200225.1:
Patched Feb 2020 LTS branch with the bug fix for absl::Status::ErasePayload.
20200225:
Fix build on FreeBSD/powerpc
Add RISCV support to GetProgramCounter()
Add missing ABSL_HAVE_VDSO_SUPPORT conditional
Fix pointer format specifier in documentation
fix: Add support for more ARM processors detection
Use https links
Fix Conan builds
Always enable proper symbolize implementation on Windows
Fix spelling errors
|
2020-03-15 23:19:45 by Tobias Nygren | Files touched by this commit (1) |
Log message:
abseil: build with -fPIC
Fixes net/grpc shared library linking problem.
|
2020-02-06 21:11:35 by Adam Ciarcinski | Files touched by this commit (5) |
Log message:
abseil: added version 20190808
Abseil is an open-source collection of C++ library code designed to augment the
C++ standard library. The Abseil library code is collected from Google's own
C++ code base, has been extensively tested and used in production, and is the
same code we depend on in our daily coding lives.
In some cases, Abseil provides pieces missing from the C++ standard; in others,
Abseil provides alternatives to the standard for special needs we've found
through usage in the Google code base. We denote those cases clearly within the
library code we provide you.
Abseil is not meant to be a competitor to the standard library; we've just
found that many of these utilities serve a purpose within our code base, and we
now want to provide those resources to the C++ community as a whole.
|