Trying the new 16 snapshot mentioned in the meet up notes and it fails.
$ alr run gcc
ⓘ Building test=0.1.0-dev/test.gpr...
Compile
[Ada] test.adb
test.adb:5:04: error: "parallel" is undefined
test.adb:5:12: error: missing ";"
```
I cut and pasted the example from Max’s repo and also used both archives from the alire link and Max's with the same result.
```
$ ls alire/cache/pins/
lwt
$ alr toolchain
CRATE VERSION STATUS NOTES
gprbuild 22.0.1 Available
gprbuild 25.0.0 Default Detected at /usr/bin/gprbuild
gprbuild 25.0.1 Available
gnat_native 14.2.1 Available
gnat_native 15.1.2 Available
gnat_external 16.0.0 Default Detected at /home/laguest/opt/gnat-x86_64-linux-16.0.0-20251102/bin/gnat
```
Any ideas?
Only use Max’s build as Alire’s snapshots are from GCC main branch, which does not have parallel. Also, I believe lwt is not needed anymore. And maybe you need to force the Ada 2022 mode.
$ alr run
ⓘ Building test=0.1.0-dev/test.gpr...
Compile
[Ada] test.adb
test.adb:6:28: warning: "lwt" library not found. Parallel loop will execute sequentially [enabled by default]
Bind
```