1. 30 Jul, 2024 3 commits
  2. 29 Jul, 2024 2 commits
  3. 26 Jul, 2024 2 commits
  4. 25 Jul, 2024 5 commits
  5. 24 Jul, 2024 1 commit
  6. 23 Jul, 2024 1 commit
  7. 22 Jul, 2024 2 commits
  8. 18 Jul, 2024 4 commits
  9. 15 Jul, 2024 3 commits
  10. 14 Jul, 2024 1 commit
  11. 11 Jul, 2024 4 commits
  12. 10 Jul, 2024 3 commits
  13. 09 Jul, 2024 1 commit
  14. 07 Jul, 2024 1 commit
  15. 04 Jul, 2024 1 commit
  16. 03 Jul, 2024 2 commits
  17. 02 Jul, 2024 2 commits
  18. 01 Jul, 2024 2 commits
    • vdso_support: support DT_GNU_HASH · 1278ee9b
      This library provides `LookupSymbol` and `LookupSymbolByAddress`. The latter
      needs `GetNumSymbols` support. An object file needs either .hash (DT_HASH) or
      .gnu.hash (DT_GNU_HASH). This patch adds DT_GNU_HASH support.
      
      Note: glibc has been supporting DT_GNU_HASH since 2006 and .hash has been quite
      obsoleted in the Linux communities.
      PiperOrigin-RevId: 648459622
      Change-Id: I3aa1274cd4617990844258175715e3be2343afd2
      Fangrui Song committed
    • Make c_begin, c_end, and c_distance conditionally constexpr. · 37ebde53
      This allows them to be used in constexpr expressions, such as the following:
      
      ```
      constexpr int distance = absl::c_distance(std::array<int, 3>());
      ```
      
      Requires at least C++17 to be constexpr.
      
      PiperOrigin-RevId: 648435141
      Change-Id: I8136e351a6dc4c25f06ef895fb449f4f11048480
      Abseil Team committed