Skip to content

Commit

Permalink
add cray to compilers for make TPL (#491)
Browse files Browse the repository at this point in the history
  • Loading branch information
baperry2 authored Apr 22, 2024
1 parent 6c1a06e commit 5f197f2
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion ThirdParty/GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,12 @@ else
ifeq ($(lowercase_hcomp),$(filter $(lowercase_hcomp),intel))
$(error for intel, specify COMP as intel-classic or intel-llvm)
else
$(error Unknown COMP setting)
ifeq ($(lowercase_hcomp),$(filter $(lowercase_hcomp),cray))
CCOMPILER = craycc
CXXCOMPILER = craycxx
else
$(error Unknown COMP setting)
endif
endif
endif
endif
Expand Down

0 comments on commit 5f197f2

Please sign in to comment.