mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-28 14:15:42 -04:00
Added Makefile option for IBM XL compiler.
This commit is contained in:
parent
287d492396
commit
7872d1912d
1 changed files with 15 additions and 0 deletions
15
src/Makefile
15
src/Makefile
|
|
@ -106,6 +106,21 @@ ifeq ($(COMPILER),pgi)
|
|||
endif
|
||||
endif
|
||||
|
||||
#===============================================================================
|
||||
# IBM XL compiler options
|
||||
#===============================================================================
|
||||
|
||||
ifeq ($(COMPILER),ibm)
|
||||
F90 = xlf2003
|
||||
F90FLAGS := -WF,-DNO_F2008
|
||||
|
||||
# Debugging options
|
||||
ifeq ($(DEBUG),yes)
|
||||
F90FLAGS += -g
|
||||
LDFLAGS += -g
|
||||
endif
|
||||
endif
|
||||
|
||||
#===============================================================================
|
||||
# Cray compiler options
|
||||
#===============================================================================
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue