2015-01-26 10:12:31 -05:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2016-09-26 06:08:13 -04:00
|
|
|
;;; Copyright © 2015, 2016 Ricardo Wurmus <rekado@elephly.net>
|
mailmap: Update entries for Nikita.
* .mailmap: change email and name for Nikita.
* Makefile.am, doc/guix.texi, etc/completion/fish/guix.fish,
gnu/packages/accessibility.scm, gnu/packages/admin.scm,
gnu/packages/audio.scm, gnu/packages/autotools.scm, gnu/packages/cdrom.scm,
gnu/packages/check.scm, gnu/packages/cinnamon.scm,
gnu/packages/compression.scm, gnu/packages/crypto.scm,
gnu/packages/databases.scm, gnu/packages/django.scm, gnu/packages/dns.scm,
gnu/packages/elixir.scm, gnu/packages/emacs-xyz.scm, gnu/packages/emacs.scm,
gnu/packages/enlightenment.scm, gnu/packages/erlang.scm,
gnu/packages/fonts.scm, gnu/packages/fontutils.scm, gnu/packages/forth.scm,
gnu/packages/fvwm.scm, gnu/packages/games.scm, gnu/packages/gl.scm,
gnu/packages/gnome.scm, gnu/packages/gnunet.scm, gnu/packages/gnupg.scm,
gnu/packages/gtk.scm, gnu/packages/guile-wm.scm, gnu/packages/guile-xyz.scm,
gnu/packages/haskell-apps.scm, gnu/packages/haskell-check.scm,
gnu/packages/haskell-crypto.scm, gnu/packages/haskell-xyz.scm,
gnu/packages/haskell.scm, gnu/packages/image-viewers.scm,
gnu/packages/image.scm, gnu/packages/irc.scm, gnu/packages/language.scm,
gnu/packages/libcanberra.scm, gnu/packages/linux.scm,
gnu/packages/lisp-xyz.scm, gnu/packages/lisp.scm, gnu/packages/lolcode.scm,
gnu/packages/lxde.scm, gnu/packages/lxqt.scm, gnu/packages/mail.scm,
gnu/packages/markup.scm, gnu/packages/mate.scm, gnu/packages/maths.scm,
gnu/packages/mc.scm, gnu/packages/messaging.scm, gnu/packages/music.scm,
gnu/packages/ncurses.scm, gnu/packages/networking.scm,
gnu/packages/nickle.scm, gnu/packages/openbox.scm, gnu/packages/pdf.scm,
gnu/packages/perl-check.scm, gnu/packages/perl.scm,
gnu/packages/python-compression.scm, gnu/packages/python-crypto.scm,
gnu/packages/python-web.scm, gnu/packages/python-xyz.scm,
gnu/packages/python.scm, gnu/packages/qt.scm, gnu/packages/ruby.scm,
gnu/packages/rust.scm, gnu/packages/scheme.scm,
gnu/packages/serialization.scm, gnu/packages/shells.scm,
gnu/packages/ssh.scm, gnu/packages/suckless.scm, gnu/packages/tbb.scm,
gnu/packages/telephony.scm, gnu/packages/text-editors.scm,
gnu/packages/textutils.scm, gnu/packages/time.scm, gnu/packages/tls.scm,
gnu/packages/tor.scm, gnu/packages/version-control.scm,
gnu/packages/video.scm, gnu/packages/vim.scm, gnu/packages/web.scm,
gnu/packages/wm.scm, gnu/packages/xdisorg.scm, gnu/packages/xfce.scm,
gnu/packages/xml.scm, gnu/packages/xorg.scm, gnu/services/certbot.scm,
gnu/services/desktop.scm, gnu/services/version-control.scm,
gnu/services/web.scm, guix/import/hackage.scm, guix/licenses.scm: Likewise.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
2020-05-11 07:05:45 -04:00
|
|
|
;;; Copyright © 2016 Nikita <nikita@n0.is>
|
2019-12-23 07:46:17 -05:00
|
|
|
;;; Copyright © 2019 Tobias Geerinckx-Rice <me@tobias.gr>
|
2021-09-10 14:56:44 -04:00
|
|
|
;;; Copyright © 2021 Guillaume Le Vaillant <glv@posteo.net>
|
2022-07-04 04:08:43 -04:00
|
|
|
;;; Copyright © 2022 Efraim Flashner <efraim@flashner.co.il>
|
2015-01-26 10:12:31 -05:00
|
|
|
;;;
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
;;; your option) any later version.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
;;;
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
(define-module (gnu packages tbb)
|
|
|
|
#:use-module (guix packages)
|
|
|
|
#:use-module (guix licenses)
|
2019-03-21 13:36:27 -04:00
|
|
|
#:use-module (guix git-download)
|
2015-01-26 10:12:31 -05:00
|
|
|
#:use-module (guix utils)
|
2021-09-10 14:56:44 -04:00
|
|
|
#:use-module (guix build-system cmake)
|
2021-10-18 16:50:40 -04:00
|
|
|
#:use-module (guix build-system gnu)
|
2015-01-26 10:12:31 -05:00
|
|
|
#:use-module (gnu packages))
|
|
|
|
|
|
|
|
(define-public tbb
|
|
|
|
(package
|
|
|
|
(name "tbb")
|
2022-02-02 09:47:06 -05:00
|
|
|
(version "2021.5.0")
|
2015-01-26 10:12:31 -05:00
|
|
|
(source (origin
|
2019-03-21 13:36:27 -04:00
|
|
|
(method git-fetch)
|
|
|
|
(uri (git-reference
|
2021-09-10 14:56:44 -04:00
|
|
|
(url "https://github.com/oneapi-src/oneTBB")
|
2019-12-23 07:46:17 -05:00
|
|
|
(commit (string-append "v" version))))
|
2019-05-14 09:44:18 -04:00
|
|
|
(file-name (git-file-name name version))
|
2015-01-26 10:12:31 -05:00
|
|
|
(sha256
|
|
|
|
(base32
|
2022-02-02 09:47:06 -05:00
|
|
|
"1z0pqzfx63zrmyqdvvkk8vl5dc0i0n5cimdkrypd50ig4d4yi7sc"))
|
2022-07-04 04:08:43 -04:00
|
|
|
(patches
|
|
|
|
;; Backport an upstream commit that prevents the
|
|
|
|
;; "test_eh_thread" test failing on AArch64.
|
|
|
|
(search-patches "tbb-fix-test-on-aarch64.patch"
|
|
|
|
"tbb-other-arches.patch"))))
|
2021-09-10 14:56:44 -04:00
|
|
|
(build-system cmake-build-system)
|
2015-01-26 10:12:31 -05:00
|
|
|
(arguments
|
2021-09-10 14:56:44 -04:00
|
|
|
`(#:configure-flags '("-DTBB_STRICT=OFF"))) ;; Don't fail on warnings
|
2015-01-26 10:12:31 -05:00
|
|
|
(home-page "https://www.threadingbuildingblocks.org")
|
|
|
|
(synopsis "C++ library for parallel programming")
|
|
|
|
(description
|
|
|
|
"Threading Building Blocks (TBB) is a C++ runtime library that abstracts
|
|
|
|
the low-level threading details necessary for optimal multi-core performance.
|
|
|
|
It uses common C++ templates and coding style to eliminate tedious threading
|
|
|
|
implementation work. It provides parallel loop constructs, asynchronous
|
|
|
|
tasks, synchronization primitives, atomic operations, and more.")
|
2016-09-08 19:04:52 -04:00
|
|
|
(license asl2.0)))
|
2021-10-18 16:50:40 -04:00
|
|
|
|
2021-10-21 18:15:56 -04:00
|
|
|
(define-public tbb-2020
|
2021-10-18 16:50:40 -04:00
|
|
|
(package
|
|
|
|
(name "tbb")
|
|
|
|
(version "2020.3")
|
|
|
|
(source (origin
|
|
|
|
(method git-fetch)
|
|
|
|
(uri (git-reference
|
|
|
|
(url "https://github.com/01org/tbb")
|
|
|
|
(commit (string-append "v" version))))
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
(sha256
|
|
|
|
(base32
|
|
|
|
"0r9axsdlmacjlcnax4vkzg86nwf8lsx7wbqdi3wnryaxk0xvdcx6"))
|
|
|
|
(modules '((guix build utils)))
|
|
|
|
(snippet
|
|
|
|
'(begin
|
|
|
|
(substitute* "build/common.inc"
|
|
|
|
(("export tbb_build_prefix.+$")
|
|
|
|
"export tbb_build_prefix?=guix\n"))
|
|
|
|
|
|
|
|
;; Don't capture the build time and kernel version.
|
|
|
|
(substitute* "build/version_info_linux.sh"
|
|
|
|
(("uname -srv") "uname -s")
|
|
|
|
(("`date -u`") "01 Jan 1970"))
|
|
|
|
|
|
|
|
(substitute* "build/linux.inc"
|
|
|
|
(("os_kernel_version:=.*")
|
|
|
|
"os_kernel_version:=5\n")
|
|
|
|
(("os_version:=.*")
|
|
|
|
"os_version:=1\n"))))))
|
|
|
|
(outputs '("out" "doc"))
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
(arguments
|
|
|
|
`(#:test-target "test"
|
|
|
|
#:make-flags (list (string-append "LDFLAGS=-Wl,-rpath="
|
2021-12-23 00:50:53 -05:00
|
|
|
(assoc-ref %outputs "out") "/lib")
|
|
|
|
"CFLAGS=-fuse-ld=gold")
|
2021-10-18 16:50:40 -04:00
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(add-after 'unpack 'fail-on-test-errors
|
|
|
|
(lambda _
|
|
|
|
(substitute* "Makefile"
|
|
|
|
(("-\\$\\(MAKE") "$(MAKE"))))
|
|
|
|
(replace 'configure
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
(substitute* "build/linux.gcc.inc"
|
|
|
|
(("LIB_LINK_FLAGS =")
|
|
|
|
(string-append "LIB_LINK_FLAGS = -Wl,-rpath="
|
|
|
|
(assoc-ref outputs "out") "/lib")))))
|
|
|
|
(replace 'install
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
(let* ((doc (string-append
|
|
|
|
(assoc-ref outputs "doc") "/doc"))
|
|
|
|
(examples (string-append doc "/examples"))
|
|
|
|
(lib (string-append
|
|
|
|
(assoc-ref outputs "out") "/lib"))
|
|
|
|
(include (string-append
|
|
|
|
(assoc-ref outputs "out") "/include")))
|
|
|
|
(mkdir-p lib)
|
|
|
|
(for-each
|
|
|
|
(lambda (f)
|
|
|
|
(copy-file f
|
|
|
|
(string-append lib "/"
|
|
|
|
(basename f))))
|
|
|
|
(find-files "build/guix_release" "\\.so"))
|
|
|
|
(copy-recursively "doc" doc)
|
|
|
|
(copy-recursively "examples" examples)
|
|
|
|
(copy-recursively "include" include)))))))
|
2021-12-23 00:50:53 -05:00
|
|
|
(native-inputs
|
|
|
|
;; XXX: For some reason, since commit "gnu: binutils: Absorb
|
|
|
|
;; binutils-next", the build of just this version of TBB crashes during
|
|
|
|
;; tests. Workaround it by linking the binaries with ld.gold.
|
|
|
|
(list (module-ref (resolve-interface
|
|
|
|
'(gnu packages commencement))
|
|
|
|
'ld-gold-wrapper)))
|
2021-10-18 16:50:40 -04:00
|
|
|
(home-page "https://www.threadingbuildingblocks.org")
|
|
|
|
(synopsis "C++ library for parallel programming")
|
|
|
|
(description
|
|
|
|
"Threading Building Blocks (TBB) is a C++ runtime library that abstracts
|
|
|
|
the low-level threading details necessary for optimal multi-core performance.
|
|
|
|
It uses common C++ templates and coding style to eliminate tedious threading
|
|
|
|
implementation work. It provides parallel loop constructs, asynchronous
|
|
|
|
tasks, synchronization primitives, atomic operations, and more.")
|
|
|
|
(license asl2.0)))
|