Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Makefile.power
Original file line number Diff line number Diff line change
Expand Up @@ -147,12 +147,15 @@ endif
ifdef BINARY64


#Skip C/Fortran compiler combination checks in AIX if NO_FORTRAN or ONLY_CBLAS is set
ifeq ($(filter 1,$(NO_FORTRAN) $(ONLY_CBLAS)),)
ifeq ($(C_COMPILER)$(F_COMPILER)$(OSNAME), GCCIBMAIX)
$(error Using GCC and XLF on AIX is not a supported combination.)
endif
ifeq ($(C_COMPILER)$(F_COMPILER)$(OSNAME), CLANGGFORTRANAIX)
$(error Using Clang and gFortran on AIX is not a supported combination.)
endif
endif

ifeq ($(OSNAME), AIX)
ifeq ($(C_COMPILER), GCC)
Expand Down
Loading