Skip to content

Commit

Permalink
Remove unused TBB from parseAPI (#1317)
Browse files Browse the repository at this point in the history
ParseAPI doesn't use TBB directly. This only compiled because of incidental inclusion of TBB via the global CMake config.
  • Loading branch information
hainest committed Nov 9, 2022
1 parent 44e8e65 commit 66a9a3d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion parseAPI/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ if(WIN32)
endif()
dyninst_library(parseAPI common instructionAPI ${SYMREADER})

target_link_private_libraries(parseAPI ${Boost_LIBRARIES} ${TBB_LIBRARIES} tbbmalloc)
target_link_private_libraries(parseAPI ${Boost_LIBRARIES})

if(WIN32)
target_link_private_libraries(parseAPI shlwapi)
Expand Down
2 changes: 0 additions & 2 deletions parseAPI/src/Parser.C
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,6 @@
#include <boost/timer/timer.hpp>
#include <fstream>

#include "tbb/concurrent_vector.h"

using namespace std;
using namespace Dyninst;
using namespace Dyninst::ParseAPI;
Expand Down

0 comments on commit 66a9a3d

Please sign in to comment.