Skip to content

Commit

Permalink
Fixing GCC in the make files for NREL machines.
Browse files Browse the repository at this point in the history
  • Loading branch information
jrood-nrel committed Apr 7, 2017
1 parent c9064cb commit 384b18d
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions Tools/GNUMake/sites/Make.nrel
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,17 @@ ifneq ($(which_computer),$(filter $(which_computer),merlin anymachine))
$(error Unknown NREL computer, $(which_computer))
endif

ifeq ($(COMP), intel)
ifeq ($(USE_MPI), TRUE)
ifeq ($(USE_MPI), TRUE)
ifeq ($(COMP), intel)
CXX := mpiicpc
CC := mpiicc
FC := mpiifort
fC := mpiifort
F90 := mpiifort
else
CXX := mpicxx
CC := mpicc
FC := mpif90
F90 := mpif90
endif
endif

0 comments on commit 384b18d

Please sign in to comment.