We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a032eee + ad168fb commit 0d7e2e7Copy full SHA for 0d7e2e7
1 file changed
easybuild/toolchains/compiler/rocm_compilers.py
@@ -40,13 +40,10 @@
40
41
42
class ROCmCompilers(LLVMCompilers):
43
- """Compiler toolchain with ROCm compilers (amdclang/amdflang)."""
+ """Compiler toolchain with ROCm compilers (clang/flang)."""
44
COMPILER_FAMILY = TC_CONSTANT_ROCM
45
SUBTOOLCHAIN = SYSTEM_TOOLCHAIN_NAME
46
47
- COMPILER_CC = 'amdclang'
48
- COMPILER_CXX = 'amdclang++'
49
-
50
- COMPILER_F77 = 'amdflang'
51
- COMPILER_F90 = 'amdflang'
52
- COMPILER_FC = 'amdflang'
+ # We use clang, clang++ and flang for now (instead of amdclang/amdclang++/amdflang).
+ # These are simply inherited from LLVMCompilers, so we don't need to respecify them
+ # See https://github.com/easybuilders/easybuild-framework/pull/5099#issuecomment-4054952860
0 commit comments