Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update tbb to 2020 3 #2447

Merged
merged 12 commits into from
Mar 26, 2021
Merged
Changes from 1 commit
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
Prev Previous commit
add -Wno-deprecated-copy when building tbb for gcc
  • Loading branch information
SteveBronder committed Mar 25, 2021
commit 9730ca76a2fc06ea57def8acaa8a1cbe04378a9d
2 changes: 1 addition & 1 deletion make/libraries
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ ifeq (clang,$(CXX_TYPE))
endif
ifeq (gcc,$(CXX_TYPE))
TBB_CC ?= $(subst g++,gcc,$(CXX))
TBB_CXXFLAGS ?= -Wno-unknown-warning-option -Wno-missing-attributes -Wno-class-memaccess -Wno-sized-deallocation $(CXXFLAGS_OPTIM_TBB) $(CXXFLAGS_FLTO_TBB)
TBB_CXXFLAGS ?= -Wno-unknown-warning-option -Wno-deprecated-copy -Wno-missing-attributes -Wno-class-memaccess -Wno-sized-deallocation $(CXXFLAGS_OPTIM_TBB) $(CXXFLAGS_FLTO_TBB)
endif
TBB_CC ?= $(CC)

Expand Down