-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path__env.sc
More file actions
23 lines (19 loc) · 684 Bytes
/
__env.sc
File metadata and controls
23 lines (19 loc) · 684 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
let spack-path = "/.spack-env/view"
'bind-symbols __env
module-search-path =
cons
# the current module in development
.. module-dir "/src/?.sc"
.. module-dir "/src/?/init.sc"
# spack installed packages
.. module-dir spack-path "/lib/scopes/packages/?.sc"
.. module-dir spack-path "/lib/scopes/packages/?/init.sc"
__env.module-search-path
include-search-path =
cons
.. module-dir spack-path "/include"
__env.include-search-path
library-search-path =
cons
.. module-dir spack-path "/lib"
__env.library-search-path