Skip to content
Merged
Changes from 1 commit
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
3 changes: 2 additions & 1 deletion easybuild/toolchains/foss.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
from distutils.version import LooseVersion

from easybuild.toolchains.gompi import Gompi
from easybuild.toolchains.gfbf import Gfbf
from easybuild.toolchains.golf import Golf
from easybuild.toolchains.fft.fftw import Fftw
from easybuild.toolchains.linalg.flexiblas import FlexiBLAS
Expand All @@ -40,7 +41,7 @@
class Foss(Gompi, OpenBLAS, FlexiBLAS, ScaLAPACK, Fftw):
"""Compiler toolchain with GCC, OpenMPI, OpenBLAS, ScaLAPACK and FFTW."""
NAME = 'foss'
SUBTOOLCHAIN = [Gompi.NAME, Golf.NAME]
SUBTOOLCHAIN = [Gompi.NAME, Golf.NAME, Gfbf.NAME]
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Need tio add Golf and Gfbf calls to the banned_linked_shaed_libs too

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I rolled back the changes done in commit 26e3e22 in commit 029695e, since it's not needed at all: the listed of banned linked shared libs is extended via the individual toolchain components (OpenBLAS/FlexiBLAS, ...) already!


def __init__(self, *args, **kwargs):
"""Toolchain constructor."""
Expand Down