This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 68591fe6c2 gnu: Add ittapi.
68591fe6c2 is described below
commit 68591fe6c26620a918220c5759f723945217cf42
Author: Cayetano Santos <[email protected]>
AuthorDate: Tue Feb 3 11:51:33 2026 +0100
gnu: Add ittapi.
* gnu/packages/profiling.scm (ittapi): New variable.
Merges guix/guix!6099
Change-Id: I8a30344343624f6c57d09fa794aca198c07e7f66
---
gnu/packages/profiling.scm | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/gnu/packages/profiling.scm b/gnu/packages/profiling.scm
index 8f25b01674..2974ad636e 100644
--- a/gnu/packages/profiling.scm
+++ b/gnu/packages/profiling.scm
@@ -5,6 +5,7 @@
;;; Copyright © 2023 dan <[email protected]>
;;; Copyright © 2025 Luca Cirrottola <[email protected]>
;;; Copyright © 2025 Artyom V. Poptsov <[email protected]>
+;;; Copyright © 2026 Cayetano Santos <[email protected]>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -28,6 +29,7 @@
#:use-module ((guix licenses) #:prefix license:) ; avoid zlib, expat clashes
#:use-module (guix download)
#:use-module (guix utils)
+ #:use-module (guix build-system cmake)
#:use-module (guix build-system gnu)
#:use-module (gnu packages)
#:use-module (gnu packages autotools)
@@ -150,6 +152,36 @@ performance measurement opportunities across the hardware
and software stack.")
license:gpl2+
;src/components/appio/tests/iozone/gengnuplot.sh
))))
+(define-public ittapi
+ (package
+ (name "ittapi")
+ (version "3.26.5")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/intel/ittapi/")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "15g3cjyl29y7ryqgbdbf5zr31kzqvshwlknpp5yl1khbqdb3jz54"))))
+ (build-system cmake-build-system)
+ (arguments
+ (list
+ #:tests? #f ;there are no tests
+ #:configure-flags #~(list "-DITT_API_IPT_SUPPORT=ON")))
+ (native-inputs
+ (list python-minimal-wrapper))
+ (home-page
+ "https://github.com/intel/ittapi/")
+ (synopsis "Intel instrumentation and tracing APIs")
+ (description
+ "This package provides the Intel @acronym{ITT, Instrumentation and
+Tracing Technology} and @acronym{JIT, Just-In-Time} profiling APIs, to
+generate and control the collection of trace data during program execution.")
+ (license license:gpl2)))
+
;; NB. there's a potential name clash with libotf.
(define-public otf2
(package