-
-
Notifications
You must be signed in to change notification settings - Fork 17.7k
tbb: 2020.3 -> 2021.7.0 #195401
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
Closed
Closed
tbb: 2020.3 -> 2021.7.0 #195401
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change | ||
|---|---|---|---|---|
| @@ -1,88 +1,28 @@ | ||||
| { lib | ||||
| , stdenv | ||||
| , fetchurl | ||||
| , fetchFromGitHub | ||||
| , cmake | ||||
| , pkg-config | ||||
| , fixDarwinDylibNames | ||||
| }: | ||||
|
|
||||
| stdenv.mkDerivation rec { | ||||
| pname = "tbb"; | ||||
| version = "2020.3"; | ||||
| version = "2021.7.0"; | ||||
|
|
||||
| src = fetchFromGitHub { | ||||
| owner = "oneapi-src"; | ||||
| repo = "oneTBB"; | ||||
| rev = "v${version}"; | ||||
| sha256 = "prO2O5hd+Wz5iA0vfrqmyHFr0Ptzk64so5KpSpvuKmU="; | ||||
| sha256 = "sha256-Lawhms0yq5p8BrQXMy6dPe29dpSlHdSntum+6bAkpyo="; | ||||
| }; | ||||
|
|
||||
| patches = [ | ||||
| # Fixes build with Musl. | ||||
| (fetchurl { | ||||
| url = "https://github.com/openembedded/meta-openembedded/raw/39185eb1d1615e919e3ae14ae63b8ed7d3e5d83f/meta-oe/recipes-support/tbb/tbb/GLIBC-PREREQ-is-not-defined-on-musl.patch"; | ||||
| sha256 = "gUfXQ9OZQ82qD6brgauBCsKdjLvyHafMc18B+KxZoYs="; | ||||
| }) | ||||
|
|
||||
| # Fixes build with Musl. | ||||
| (fetchurl { | ||||
| url = "https://github.com/openembedded/meta-openembedded/raw/39185eb1d1615e919e3ae14ae63b8ed7d3e5d83f/meta-oe/recipes-support/tbb/tbb/0001-mallinfo-is-glibc-specific-API-mark-it-so.patch"; | ||||
| sha256 = "fhorfqO1hHKZ61uq+yTR7eQ8KYdyLwpM3K7WpwJpV74="; | ||||
| }) | ||||
|
|
||||
| # Fixes build with upcoming gcc-13: | ||||
| # https://github.com/oneapi-src/oneTBB/pull/833 | ||||
| (fetchurl { | ||||
| name = "gcc-13.patch"; | ||||
| url = "https://github.com/oneapi-src/oneTBB/pull/833/commits/c18342ba667d1f33f5e9a773aa86b091a9694b97.patch"; | ||||
| sha256 = "ZUExE3nsW80Z5GPWZnDNuDiHHaD1EF7qNl/G5M+Wcxg="; | ||||
| }) | ||||
|
|
||||
| # Fixes build for aarch64-darwin | ||||
| (fetchurl { | ||||
| name = "aarch64-darwin.patch"; | ||||
| url = "https://github.com/oneapi-src/oneTBB/pull/258/commits/86f6dcdc17a8f5ef2382faaef860cfa5243984fe.patch"; | ||||
| sha256 = "sha256-JXqrFPCb3q1vfxk752tQu7HhApCB4YH2LoVnGRwmspk="; | ||||
| }) | ||||
| ]; | ||||
|
|
||||
| nativeBuildInputs = lib.optionals stdenv.isDarwin [ | ||||
| nativeBuildInputs = [ cmake pkg-config ] ++ (lib.optionals stdenv.isDarwin [ | ||||
| fixDarwinDylibNames | ||||
| ]; | ||||
|
|
||||
| makeFlags = lib.optionals stdenv.cc.isClang [ | ||||
| "compiler=clang" | ||||
| ]; | ||||
| ]); | ||||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||
|
|
||||
| enableParallelBuilding = true; | ||||
|
|
||||
| installPhase = '' | ||||
| runHook preInstall | ||||
| mkdir -p $out/lib | ||||
| cp "build/"*release*"/"*${stdenv.hostPlatform.extensions.sharedLibrary}* $out/lib/ | ||||
| mv include $out/ | ||||
| rm $out/include/index.html | ||||
| runHook postInstall | ||||
| ''; | ||||
|
|
||||
| postInstall = let | ||||
| pcTemplate = fetchurl { | ||||
| url = "https://github.com/oneapi-src/oneTBB/raw/478de5b1887c928e52f029d706af6ea640a877be/integration/pkg-config/tbb.pc.in"; | ||||
| sha256 = "2pCad9txSpNbzac0vp/VY3x7HNySaYkbH3Rx8LK53pI="; | ||||
| }; | ||||
| in '' | ||||
| # Generate pkg-config file based on upstream template. | ||||
| # It should not be necessary with tbb after 2021.2. | ||||
| mkdir -p "$out/lib/pkgconfig" | ||||
| substitute "${pcTemplate}" "$out/lib/pkgconfig/tbb.pc" \ | ||||
| --subst-var-by CMAKE_INSTALL_PREFIX "$out" \ | ||||
| --subst-var-by CMAKE_INSTALL_LIBDIR "lib" \ | ||||
| --subst-var-by CMAKE_INSTALL_INCLUDEDIR "include" \ | ||||
| --subst-var-by TBB_VERSION "${version}" \ | ||||
| --subst-var-by TBB_LIB_NAME "tbb" | ||||
| ''; | ||||
|
|
||||
| meta = with lib; { | ||||
| description = "Intel Thread Building Blocks C++ Library"; | ||||
| homepage = "http://threadingbuildingblocks.org/"; | ||||
|
|
||||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Always using
optionalsand multi-line dependencies makes it less error-prone and moregit diffandblamefriendly.