Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions .github/workflows/dependency-version.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,6 @@ jobs:
res=1
fi

Comment thread
sputhala-amd marked this conversation as resolved.
current=$(awk 'match($0,/set\(_min_version (.+)\)/,a){print a[1]}' cmake/tpls/DyninstTBB.cmake)
expected=$(awk 'match($0,/tbb:(.+)/,a){print a[1]}' docker/dependencies.versions)
if test "$current" != "$expected"; then
echo "TBB mismatch: Found $current, expected $expected" >/dev/stderr
res=1
fi

current=$(awk 'match($0,/set\(_min_version (.+)\)/,a){print a[1]}' cmake/tpls/DyninstElfUtils.cmake)
expected=$(awk 'match($0,/elfutils:(.+)/,a){print a[1]}' docker/dependencies.versions)
if test "$current" != "$expected"; then
Expand Down
1 change: 0 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ include(DyninstOptimization)

# Locate third-party libraries
include(DyninstThreads)
include(DyninstTBB)
include(DyninstElfUtils)
include(DyninstLibIberty)
include(DyninstThread_DB)
Expand Down
1 change: 0 additions & 1 deletion cmake/DyninstConfig.cmake.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ list(INSERT CMAKE_MODULE_PATH 0 "${CMAKE_CURRENT_LIST_DIR}/Modules"
"${CMAKE_CURRENT_LIST_DIR}/tpls")

include(DyninstElfUtils)
include(DyninstTBB)

set(CMAKE_MODULE_PATH ${_DYNINST_module_path_save})
unset(_DYNINST_module_path_save)
Expand Down
59 changes: 0 additions & 59 deletions cmake/tpls/DyninstTBB.cmake

This file was deleted.

1 change: 0 additions & 1 deletion common/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,6 @@ dyninst_library(
PRIVATE_HEADER_FILES ${_private_headers}
SOURCE_FILES ${_sources}
DEFINES COMMON_LIB
PUBLIC_DEPS Dyninst::TBB
PRIVATE_DEPS Dyninst::LibIberty OpenMP::OpenMP_CXX Dyninst::Valgrind Threads::Threads
)
# cmake-format: on
Expand Down
1 change: 1 addition & 0 deletions common/h/IBSTree-fast.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
#define IBSTREE_FAST_H
#include "IBSTree.h"
#include <assert.h>
#include <iterator>
#include <set>
#include <iostream>

Expand Down
Loading