Skip to content

Commit

Permalink
Add nvhpc compiler to thirdparty. (#503)
Browse files Browse the repository at this point in the history
  • Loading branch information
jrood-nrel authored May 29, 2024
1 parent 575c71f commit b83ad4a
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 @@ -52,7 +52,12 @@ else
CCOMPILER = craycc
CXXCOMPILER = craycxx
else
$(error Unknown COMP setting)
ifeq ($(lowercase_hcomp),$(filter $(lowercase_hcomp),nvhpc))
CCOMPILER = nvc
CXXCOMPILER = nvc++
else
$(error Unknown COMP setting)
endif
endif
endif
endif
Expand Down

0 comments on commit b83ad4a

Please sign in to comment.