Open
Description
I was trying to compile bash and it was failing. After some debugging, parallelism came as the possible cause of the issue.
I tried to solve it by using --sequential
, but it looks like it didn't worked, make was called with more than one job:
$ eb --prefix=/soft -r Bash-4.3-GCC-4.9.2.eb --try-software-version=5.1 --try-toolchain=GCCcore,12.1.0 --disable-map-toolchains --sequential
.
.
== FAILED: Installation ended unsuccessfully (build directory: /soft/build/Bash/5.1/GCCcore-12.1.0): build failed (first 300 chars): cmd " make -j 256 " exited with exit code 2 and output:
.
.
Then I tried with --parallel=1
and it worked. But I was expecting the --sequential
flag to do its job.