Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ find_package(cetmodules 4.01.01 REQUIRED)

# ##############################################################################
# Main project declaration
project(phlex VERSION 0.1.0 LANGUAGES CXX)
project(phlex VERSION 0.2.0 LANGUAGES CXX)
cet_cmake_env()
# ##############################################################################

Expand Down
8 changes: 4 additions & 4 deletions INSTALLATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,16 +71,16 @@ config:
## Ensuring a sufficient compiler

Step 6: ensure that spack has access to a new enough GCC.
Currently this means GCC 14.
Currently this means GCC 15.

Run `spack compilers` to see what compilers Spack knows about.
It may tell you to run `spack compiler find` to autodetect compilers.
If so, follow the instructions and afterward re-run `spack compilers`.

If you don't have GCC 14 or newer, then install GCC 14:
If you don't have GCC 15 or newer, then install GCC 15:

```bash
spack install -j 12 gcc@14 # choose a suitable number of jobs for your machine
spack install -j 12 gcc@15 # choose a suitable number of jobs for your machine
```

Building GCC may take a while (30 minutes or so on a 12 core machine).
Expand All @@ -103,7 +103,7 @@ To guide the creation of the environment, download the environment configuration
```bash
spack env create my-phlex-environment
spack env activate my-phlex-environment
spack add phlex %gcc@14
spack add phlex %gcc@15
spack concretize
```

Expand Down
Loading