forked from HPAC/mr3smp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
m.petschow
committed
Nov 22, 2010
1 parent
afa854e
commit 39eb1f5
Showing
3 changed files
with
23 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Compiler for C and Fortran | ||
CC = xlc_r | ||
FC = xlf_r | ||
|
||
# Compiler flags | ||
CFLAGS = -O3 -qthreaded -qstrict | ||
FFLAGS = -O3 -qthreaded -qstrict -qextname | ||
|
||
# Archiver and flags used when building the archive | ||
AR = /usr/bin/ar | ||
ARFLAGS = rcs | ||
|
||
# Indicate if C99 feature of complex number are supported, | ||
# which is ONLY NECESSARY FOR THE HERMITIAN WRAPPER ROUTINE. | ||
# If true and routine needed, set to 1. To be safe it is set | ||
# to 0 by default | ||
COMPLEX_SUPPORT = 0 | ||
|
||
# Compile routines without adding necessary LAPACK routines | ||
# to 'libmrrr.a'; default = 0 | ||
NOLAPACK = 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters