Skip to content

Commit 7570660

Browse files
Update Spack-Development-Tutorial.md
1 parent 609acea commit 7570660

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

sbn_online_wiki/Spack-Development-Tutorial.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -54,15 +54,15 @@ This step ensures your current working directory is the environment directory yo
5454
Add the `sbndaq-suite` package and its specific configuration, and set up the `sbndaq-artdaq` package for development:
5555

5656
```sh
57-
spack add sbndaq-suite@v1_10_03 s=131 %gcc@12.1.0 arch=x86_64_v2
58-
spack develop sbndaq-artdaq@v1_10_03
57+
spack add sbndaq-suite@v1_10_05 s=131 %gcc@12.1.0 arch=x86_64_v2
58+
spack develop sbndaq-artdaq@v1_10_05
5959
```
6060

61-
- `spack add sbndaq-suite@v1_10_03`: Adds the `sbndaq-suite` package version `v1_10_03` to the environment.
61+
- `spack add sbndaq-suite@v1_10_05`: Adds the `sbndaq-suite` package version `v1_10_05` to the environment.
6262
- `s=131`: Specifies the package variants or options.
6363
- `%gcc@12.1.0`: Specifies the compiler to use (GCC version 12.1.0).
6464
- `arch=x86_64_v2`: Specifies the target architecture.
65-
- `spack develop sbndaq-artdaq@v1_10_03`: Marks the `sbndaq-artdaq` package version `v1_10_03` for development, meaning its source code will be added to the environment for easy editing.
65+
- `spack develop sbndaq-artdaq@v1_10_05`: Marks the `sbndaq-artdaq` package version `v1_10_05` for development, meaning its source code will be added to the environment for easy editing.
6666

6767
## Step 5: Concretize the Environment
6868

@@ -139,7 +139,7 @@ Here are some useful examples of interacting with Spack after setting up and wor
139139
To list all installed versions of the `sbndaq-suite` package with detailed information:
140140

141141
```sh
142-
spack find -lpvf sbndaq-suite@v1_10_03
142+
spack find -lpvf sbndaq-suite@v1_10_05
143143
```
144144

145145
- `-l`: Displays package hashes.
@@ -152,7 +152,7 @@ spack find -lpvf sbndaq-suite@v1_10_03
152152
To load the specified version of the `sbndaq-suite` package into your current shell environment:
153153

154154
```sh
155-
spack load sbndaq-suite@v1_10_03 %gcc@12.1.0 s=131
155+
spack load sbndaq-suite@v1_10_05 %gcc@12.1.0 s=131
156156
```
157157

158158
- `%gcc@12.1.0`: Specifies the compiler version.

0 commit comments

Comments
 (0)