diff options
author | julie <julielangou@users.noreply.github.com> | 2012-04-12 21:07:52 +0000 |
---|---|---|
committer | julie <julielangou@users.noreply.github.com> | 2012-04-12 21:07:52 +0000 |
commit | e920f07b5587768435d6c94585c700bd17692221 (patch) | |
tree | cfd411b0fcc1f143318d1c99fb61c2bab22160b2 | |
parent | d1c0c25cd21baff8edfe9273b2f975ac81da2703 (diff) | |
download | lapack-e920f07b5587768435d6c94585c700bd17692221.tar.gz lapack-e920f07b5587768435d6c94585c700bd17692221.tar.bz2 lapack-e920f07b5587768435d6c94585c700bd17692221.zip |
Add -qnosave option for xlf compiler (Thanks Rodney)
-rw-r--r-- | CMakeLists.txt | 3 | ||||
-rw-r--r-- | INSTALL/make.inc.XLF (renamed from INSTALL/make.inc.RS6K) | 8 |
2 files changed, 7 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index f0f9cd1f..9d022513 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -15,6 +15,9 @@ if (UNIX) if ( "${CMAKE_Fortran_COMPILER}" MATCHES "ifort" ) set( CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -fltconsistency -fp_port" ) endif () + if ( "${CMAKE_Fortran_COMPILER}" MATCHES "xlf" ) + set( CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -qnosave" ) + endif () # Delete libmtsk in linking sequence for Sun/Oracle Fortran Compiler. # This library is not present in the Sun package SolarisStudio12.3-linux-x86-bin STRING(REPLACE \;mtsk\; \; CMAKE_Fortran_IMPLICIT_LINK_LIBRARIES "${CMAKE_Fortran_IMPLICIT_LINK_LIBRARIES}") diff --git a/INSTALL/make.inc.RS6K b/INSTALL/make.inc.XLF index b788a4fb..f37b36b8 100644 --- a/INSTALL/make.inc.RS6K +++ b/INSTALL/make.inc.XLF @@ -13,11 +13,11 @@ SHELL = /bin/sh # desired load options for your machine. # FORTRAN = xlf -OPTS = -O3 -qmaxmem=-1 +OPTS = -O2 -qfixed -qnosave DRVOPTS = $(OPTS) -NOOPT = +NOOPT = -O0 -qfixed -qnosave LOADER = xlf -LOADOPTS = +LOADOPTS = -qnosave # # Timer for the SECOND and DSECND routines # @@ -43,7 +43,7 @@ TIMER = EXT_ETIME_ # CC is the C compiler, normally invoked with options CFLAGS. # CC = xlc -CFLAGS = -O3 -qmaxmem=-1 +CFLAGS = -O3 -qnosave # # LAPACKE has also the interface to some routines from tmglib, # if LAPACKE_WITH_TMG is selected, we need to add those routines to LAPACKE |