diff options
| author | Efraim Flashner <efraim@flashner.co.il> | 2026-05-06 11:01:43 +0300 |
|---|---|---|
| committer | Efraim Flashner <efraim@flashner.co.il> | 2026-05-11 10:50:29 +0300 |
| commit | 0bef0170018966d013de9273542a53e7c8e84f3d (patch) | |
| tree | b2feb5a3ab460c163fbff7c945a938fd421200c0 | |
| parent | cf7adf3954d271e047cc3fbb736de676a3278a1a (diff) | |
gnu: embree: Limit architecture support.
* gnu/packages/graphics.scm (embree)[supported-architectures]: New field.
Change-Id: If5c18e44d41050d1879140dc273ad76db019315d
| -rw-r--r-- | gnu/packages/graphics.scm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/packages/graphics.scm b/gnu/packages/graphics.scm index 68a49ef916..f25fa189ff 100644 --- a/gnu/packages/graphics.scm +++ b/gnu/packages/graphics.scm @@ -647,6 +647,9 @@ with the @command{autotrace} utility or as a C library, @code{libautotrace}.") "Embree is a collection of high-performance ray tracing kernels. Embree is meant to increase performance of photo-realistic rendering applications.") + ;; From the README: Embree requires at least an x86 CPU with support for + ;; SSE2 or an Apple M1 CPU. + (supported-systems '("x86_64-linux" "aarch64-linux")) (license license:asl2.0))) (define-public embree-3 |
