Skip to content

Commit 0d7e2e7

Browse files
authored
Merge pull request #1 from casparvl/rocm_toolchain_change_to_clang
Use regular clang/clang++/flang binaries in this toolchain instead
2 parents a032eee + ad168fb commit 0d7e2e7

1 file changed

Lines changed: 4 additions & 7 deletions

File tree

easybuild/toolchains/compiler/rocm_compilers.py

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,10 @@
4040

4141

4242
class ROCmCompilers(LLVMCompilers):
43-
"""Compiler toolchain with ROCm compilers (amdclang/amdflang)."""
43+
"""Compiler toolchain with ROCm compilers (clang/flang)."""
4444
COMPILER_FAMILY = TC_CONSTANT_ROCM
4545
SUBTOOLCHAIN = SYSTEM_TOOLCHAIN_NAME
4646

47-
COMPILER_CC = 'amdclang'
48-
COMPILER_CXX = 'amdclang++'
49-
50-
COMPILER_F77 = 'amdflang'
51-
COMPILER_F90 = 'amdflang'
52-
COMPILER_FC = 'amdflang'
47+
# We use clang, clang++ and flang for now (instead of amdclang/amdclang++/amdflang).
48+
# These are simply inherited from LLVMCompilers, so we don't need to respecify them
49+
# See https://github.com/easybuilders/easybuild-framework/pull/5099#issuecomment-4054952860

0 commit comments

Comments
 (0)