[DynInst_API:] [dyninst/dyninst] e885d3: ignore .hmac files in system-libs github workflow ...

2024-04-09 Thread kupsch
  Branch: refs/heads/master
  Home:   https://github.com/dyninst/dyninst
  Commit: e885d38c535976c92f108bce29803dcb6145476e
  
https://github.com/dyninst/dyninst/commit/e885d38c535976c92f108bce29803dcb6145476e
  Author: kupsch 
  Date:   2024-04-09 (Tue, 09 Apr 2024)

  Changed paths:
M .github/workflows/system-libs.yaml

  Log Message:
  ---
  ignore .hmac files in system-libs github workflow (#1724)

.hmac files are library files so do not try to parse



To unsubscribe from these emails, change your notification settings at 
https://github.com/dyninst/dyninst/settings/notifications
___
Dyninst-api mailing list
Dyninst-api@cs.wisc.edu
https://lists.cs.wisc.edu/mailman/listinfo/dyninst-api


[DynInst_API:] [dyninst/dyninst] a4d957: Move check into DyninstWarnings.cmake

2024-04-09 Thread Tim Haines
  Branch: refs/heads/thaines/cmake_boost_clang_deprecation
  Home:   https://github.com/dyninst/dyninst
  Commit: a4d957210980e8dd986a4d5ecbf99d937c98340c
  
https://github.com/dyninst/dyninst/commit/a4d957210980e8dd986a4d5ecbf99d937c98340c
  Author: Tim Haines 
  Date:   2024-04-09 (Tue, 09 Apr 2024)

  Changed paths:
M cmake/DyninstWarnings.cmake
M cmake/tpls/DyninstBoost.cmake

  Log Message:
  ---
  Move check into DyninstWarnings.cmake



To unsubscribe from these emails, change your notification settings at 
https://github.com/dyninst/dyninst/settings/notifications
___
Dyninst-api mailing list
Dyninst-api@cs.wisc.edu
https://lists.cs.wisc.edu/mailman/listinfo/dyninst-api


[DynInst_API:] [dyninst/dyninst] d4323f: Shorten lines for cmake-format

2024-04-09 Thread Tim Haines
  Branch: refs/heads/thaines/cmake_boost_clang_deprecation
  Home:   https://github.com/dyninst/dyninst
  Commit: d4323fe82a255855db2d211492f11183160e5aa4
  
https://github.com/dyninst/dyninst/commit/d4323fe82a255855db2d211492f11183160e5aa4
  Author: Tim Haines 
  Date:   2024-04-09 (Tue, 09 Apr 2024)

  Changed paths:
M cmake/tpls/DyninstBoost.cmake

  Log Message:
  ---
  Shorten lines for cmake-format



To unsubscribe from these emails, change your notification settings at 
https://github.com/dyninst/dyninst/settings/notifications
___
Dyninst-api mailing list
Dyninst-api@cs.wisc.edu
https://lists.cs.wisc.edu/mailman/listinfo/dyninst-api


[DynInst_API:] [dyninst/dyninst] f9a49b: Disable -Wdeprecated-declarations for Boost on cla...

2024-04-09 Thread Tim Haines
  Branch: refs/heads/thaines/cmake_boost_clang_deprecation
  Home:   https://github.com/dyninst/dyninst
  Commit: f9a49b87af8f58c5a63f7f4eee48184599c2d91b
  
https://github.com/dyninst/dyninst/commit/f9a49b87af8f58c5a63f7f4eee48184599c2d91b
  Author: Tim Haines 
  Date:   2024-04-09 (Tue, 09 Apr 2024)

  Changed paths:
M cmake/tpls/DyninstBoost.cmake

  Log Message:
  ---
  Disable -Wdeprecated-declarations for Boost on clang > 17

It's not clear why, but clang 18 and 19 do not correctly detect that
/usr/include/boost is a system directory, and it emits warnings for
use of deprecated std::unary_function.



To unsubscribe from these emails, change your notification settings at 
https://github.com/dyninst/dyninst/settings/notifications
___
Dyninst-api mailing list
Dyninst-api@cs.wisc.edu
https://lists.cs.wisc.edu/mailman/listinfo/dyninst-api


[DynInst_API:] [dyninst/dyninst] 12fc20: fix system-lib github workflow (#1722)

2024-04-09 Thread kupsch
  Branch: refs/heads/master
  Home:   https://github.com/dyninst/dyninst
  Commit: 12fc2000b135f1b3ce5857723e9248d43c917a42
  
https://github.com/dyninst/dyninst/commit/12fc2000b135f1b3ce5857723e9248d43c917a42
  Author: kupsch 
  Date:   2024-04-09 (Tue, 09 Apr 2024)

  Changed paths:
M .github/workflows/system-libs.yaml

  Log Message:
  ---
  fix system-lib github workflow (#1722)

change shell code in workflow to be /bin/sh compliant instead of
using bash constructs



To unsubscribe from these emails, change your notification settings at 
https://github.com/dyninst/dyninst/settings/notifications
___
Dyninst-api mailing list
Dyninst-api@cs.wisc.edu
https://lists.cs.wisc.edu/mailman/listinfo/dyninst-api


[DynInst_API:] [dyninst/dyninst] e70b10: improve cmake install dirs (#1721)

2024-04-09 Thread kupsch
  Branch: refs/heads/master
  Home:   https://github.com/dyninst/dyninst
  Commit: e70b1001eb5082bb0204b602e3ca1cfccd67fc94
  
https://github.com/dyninst/dyninst/commit/e70b1001eb5082bb0204b602e3ca1cfccd67fc94
  Author: kupsch 
  Date:   2024-04-09 (Tue, 09 Apr 2024)

  Changed paths:
M .github/workflows/consumers.yaml
M .github/workflows/pr-tests.yaml
M .github/workflows/system-libs.yaml
M .github/workflows/unit-tests.yaml
M cmake/DyninstLibrarySettings.cmake
M parseThat/CMakeLists.txt

  Log Message:
  ---
  improve cmake install dirs (#1721)

* Use cmake's GNUInstallDirs to get the lib, bin and include directory
  names instead of always using 'lib', 'bin', and 'include'.  This 
  results in two changes to the installation:

  - lib directory becomes 'lib64' on platforms where this is the
convention

  - the lib, bin and include may be overwritten using the cmake 
variables CMAKE_INSTALL_BINDIR, CMAKE_INSTALL_LIBDIR and
CMAKE_INSTALL_INCLUDEDIR respectively

* Update github workflows to handle the lib install dir lib64:

  - use Dyninst_ROOT instead of Dyninst_DIR as it searches for the
directory used

  - for non-cmake uses search for lib* to find either lib or lib64



To unsubscribe from these emails, change your notification settings at 
https://github.com/dyninst/dyninst/settings/notifications
___
Dyninst-api mailing list
Dyninst-api@cs.wisc.edu
https://lists.cs.wisc.edu/mailman/listinfo/dyninst-api


[DynInst_API:] [dyninst/dyninst]

2024-04-09 Thread kupsch
  Branch: refs/heads/kupsch/documentation_modernization
  Home:   https://github.com/dyninst/dyninst

To unsubscribe from these emails, change your notification settings at 
https://github.com/dyninst/dyninst/settings/notifications
___
Dyninst-api mailing list
Dyninst-api@cs.wisc.edu
https://lists.cs.wisc.edu/mailman/listinfo/dyninst-api