Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
edix-channel
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
FARGES Olivier
edix-channel
Commits
3c41f899
Verified
Commit
3c41f899
authored
4 months ago
by
FARGES Olivier
Browse files
Options
Downloads
Patches
Plain Diff
debug star-3d
parent
830946f8
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
edix/packages/embree-edix.scm
+41
-0
41 additions, 0 deletions
edix/packages/embree-edix.scm
edix/packages/star-3d.scm
+2
-2
2 additions, 2 deletions
edix/packages/star-3d.scm
with
43 additions
and
2 deletions
edix/packages/embree-edix.scm
0 → 100644
+
41
−
0
View file @
3c41f899
(
define-module
(
edix
packages
embree-edix
)
#
:use-module
(
gnu
packages
graphics
)
#
:use-module
(
guix
packages
)
#
:use-module
(
guix
git-download
)
#
:use-module
(
guix
build-system
gnu
)
#
:use-module
((
guix
licenses
)
#
:prefix
license:
)
#
:use-module
(
gnu
packages
tbb
)
#
:use-module
(
gnu
packages
gl
)
#
:use-module
(
guix
licenses
)
#
:use-module
(
guix
utils
)
#
:use-module
(
guix
git-download
)
#
:use-module
(
guix
build-system
cmake
)
#
:use-module
(
guix
packages
))
(
define-public
embree-edix
(
package
(
name
"embree"
)
(
version
"4.0.0"
)
(
source
(
origin
(
method
git-fetch
)
(
uri
(
git-reference
(
url
"https://github.com/embree/embree"
)
(
commit
(
string-append
"v"
version
))))
(
file-name
(
git-file-name
name
version
))
(
sha256
(
base32
"1hqplgzsn1mp68w7wlllp9a0x54vgln6f2fvvxqvfr8wr05nzfw6"
))))
(
build-system
cmake-build-system
)
(
arguments
`
(
#
:tests?
#f
; no tests (apparently)
#
:configure-flags
(
list
"-DEMBREE_ISPC_SUPPORT=OFF"
)))
(
inputs
(
list
tbb
glfw
))
(
home-page
"https://www.embree.org/"
)
(
synopsis
"High performance ray tracing kernels"
)
(
description
"Embree is a collection of high-performance ray tracing kernels.
Embree is meant to increase performance of photo-realistic rendering
applications."
)
(
license
license:asl2
.
0
)))
This diff is collapsed.
Click to expand it.
edix/packages/star-3d.scm
+
2
−
2
View file @
3c41f899
...
...
@@ -13,7 +13,7 @@
#
:use-module
(
gnu
packages
maths
)
#
:use-module
(
gnu
packages
bash
)
#
:use-module
(
gnu
packages
check
)
#
:use-module
(
gnu
packages
graphics
)
#
:use-module
(
edix
packages
embree-edix
)
#
:use-module
(
edix
packages
rsys
))
...
...
@@ -35,7 +35,7 @@
(
list
gcc
gfortran
bash
gnu-make
rsys
embree
gnu-make
rsys
embree
-edix
))
(
arguments
`
(
#
:make-flags
(
list
(
string-append
"CC=gcc"
))
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment