summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergei Trofimovich <slyich@gmail.com>2022-05-20 07:55:35 +0100
committerSergei Trofimovich <slyich@gmail.com>2022-05-20 07:55:35 +0100
commit0e1c9977e9325f4dec21c46a80badf3b525aed48 (patch)
tree7a797e61c3b35701d51ad02f9869b3ad9d5259e8
parent2d584efc0602d16541dab796379ba1952304ef4e (diff)
downloadnixpkgs-0e1c9977e9325f4dec21c46a80badf3b525aed48.tar
nixpkgs-0e1c9977e9325f4dec21c46a80badf3b525aed48.tar.gz
nixpkgs-0e1c9977e9325f4dec21c46a80badf3b525aed48.tar.bz2
nixpkgs-0e1c9977e9325f4dec21c46a80badf3b525aed48.tar.lz
nixpkgs-0e1c9977e9325f4dec21c46a80badf3b525aed48.tar.xz
nixpkgs-0e1c9977e9325f4dec21c46a80badf3b525aed48.tar.zst
nixpkgs-0e1c9977e9325f4dec21c46a80badf3b525aed48.zip
tbb: pull fix pending upstream inclusion for gcc-13 support
Without the change build fails on upcoming gcc-13 as:

    ../../include/tbb/task.h:300:20: error: declaration of 'tbb::task& tbb::internal::task_prefix::task()' changes meaning of 'task' [-fpermissive]
      300 |         tbb::task& task() {return *reinterpret_cast<tbb::task*>(this+1);}
          |                    ^~~~
    ../../include/tbb/task.h:252:9: note: used here to mean 'class tbb::task'
      252 |         task* next_offloaded;
          |         ^~~~
    ../../include/tbb/task.h:43:7: note: declared here
       43 | class task;
          |       ^~~~
-rw-r--r--pkgs/development/libraries/tbb/default.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/pkgs/development/libraries/tbb/default.nix b/pkgs/development/libraries/tbb/default.nix
index 7913f05354d..1d739810e9e 100644
--- a/pkgs/development/libraries/tbb/default.nix
+++ b/pkgs/development/libraries/tbb/default.nix
@@ -28,6 +28,14 @@ stdenv.mkDerivation rec {
       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=";
+    })
   ];
 
   nativeBuildInputs = lib.optionals stdenv.isDarwin [