1. 31 Aug, 2022 4 commits
  2. 30 Aug, 2022 1 commit
  3. 29 Aug, 2022 3 commits
    • CMake: Add an option to build the libraries that are used for writing · 277ce1dd
      tests without requiring Abseil's tests be built (default=OFF)
      
      This disables building libraries that are only used for writing tests
      by default.
      
      The logging library releases some libraries used for writing tests
      that themselves depend on GoogleTest. This allows Abseil to build by
      default without requiring GoogleTest.
      
      Fixes #1262
      
      PiperOrigin-RevId: 470847215
      Change-Id: I296f41aa06d6f302853af3f32e1f762649504afc
      Derek Mauro committed
    • Fix "unsafe narrowing" warnings in absl, 7/n. · d9382f72
      Addresses failures with the following, in some files:
      -Wshorten-64-to-32
      -Wimplicit-int-conversion
      -Wsign-compare
      -Wsign-conversion
      -Wtautological-unsigned-zero-compare
      
      (This specific CL focuses on .cc files in debugging/internal/.)
      
      Bug: chromium:1292951
      PiperOrigin-RevId: 470812243
      Change-Id: I5578030bb42ba73cb83d4df84f89e431ceac8992
      Abseil Team committed
    • Fix "unsafe narrowing" warnings in absl, 6/n. · 75691f1c
      Addresses failures with the following, in some files:
      -Wshorten-64-to-32
      -Wimplicit-int-conversion
      -Wsign-compare
      -Wsign-conversion
      -Wtautological-unsigned-zero-compare
      
      (This specific CL focuses on .cc files in strings/internal/.)
      
      Bug: chromium:1292951
      PiperOrigin-RevId: 470810568
      Change-Id: Ibd316a7e62cc43cb198ba22daed565c9573ce235
      Abseil Team committed
  4. 25 Aug, 2022 1 commit
  5. 24 Aug, 2022 2 commits
  6. 23 Aug, 2022 1 commit
  7. 22 Aug, 2022 1 commit
    • Support compilers that are unknown to CMake · c5615151
      Abseil failed to configure with `ABSL_PROPAGATE_CXX_STD` if the compiler was not known to CMake:
      
          target_compile_features no known features for CXX compiler
      
      Turns the error into a warning by checking `CMAKE_CXX_COMPILE_FEATURES`
      before calling `target_compile_features`.
      
      PiperOrigin-RevId: 469254470
      Change-Id: Ifba006dcdbf6a7112e382075b24678a792dbc827
      Abseil Team committed
  8. 18 Aug, 2022 2 commits
  9. 17 Aug, 2022 6 commits
  10. 16 Aug, 2022 3 commits
  11. 15 Aug, 2022 1 commit
  12. 12 Aug, 2022 3 commits
  13. 11 Aug, 2022 4 commits
  14. 10 Aug, 2022 3 commits
  15. 09 Aug, 2022 1 commit
  16. 05 Aug, 2022 3 commits
  17. 04 Aug, 2022 1 commit
    • debugging: handle alternate signal stacks better on RISCV · 9ab9e487
      In the case that we are unwinding with context, if the retreived frame pointer
      matches the signal context, assume that the value is valid and do not perform
      confidence checks.  In any other case, continue to perform some validation to
      avoid returning an incorrect frame pointer.
      
      Given that the VDSO path is currently untested, remove the code to simplify the
      logic in the frame walking.
      
      PiperOrigin-RevId: 465360612
      Change-Id: Iac656012182a12814bafecf20225ba68b90b4db1
      Saleem Abdulrasool committed