Skip to content
Snippets Groups Projects
Commit fe7e85a6 authored by Christopher Subich's avatar Christopher Subich
Browse files

Merge branch 'ds/suttonConfig' into 'master'

Check-in config file and link for sutton.

See merge request !17
parents 8d7d79a7 c52ba16d
No related branches found
No related tags found
1 merge request!17Check-in config file and link for sutton.
#!/bin/bash
### This is a system-specific configuration file designed for
### the system sutton.math. It uses the newly-established naming
### convention of:
### <system>.<cc>.<mpi_lib>.<blas/lapack_lib>.sh
### designed to help support the use of multiple compiler
### configurations on a single system.
# System-specific settings for bow.math.private
CC=gcc
CXX=g++
LD=mpicxx
# System-specific compiler flags
SYSTEM_CFLAGS=
SYSTEM_LDFLAGS=
# Compiler flags for debugging
DEBUG_CFLAGS="-g -DBZ_DEBUG"
DEBUG_LDFLAGS=
# Compiler flags for optimization
OPTIM_CFLAGS="-O3 -ffast-math"
OPTIM_LDFLAGS=$OPTIM_CFLAGS
# Compiler flags for extra optimization, such as -ip -ipo on icc
EXTRA_OPTIM_CFLAGS="-march=znver2"
EXTRA_OPTIM_LDFLAGS=$EXTRA_OPTIM_CFLAGS
# Library names/locations/flags for MPI-compilation. This will
# probably not be necessary on systems with a working mpicc alias
# When using SGI/HPE MPT, after loading the module, mpicxx is in search rules
# and it sets the rest of the references it needs.
MPICXX=mpicxx
#MPI_CFLAGS=
#MPI_LIBDIR="-L${MPI_LIB}"
MPI_LIB="-lmpi_cxx -lmpi"
#MPI_INCDIR="-I${MPI_INCLUDE}"
# Library names/locations for LAPACK
LAPACK_LIB="-llapack -lblas"
LAPACK_LIBDIR=
LAPACK_INCDIR=
# Library locations for blitz; leave blank to use system-installed
# or compiled-with-this-package version
BLITZ_LIBDIR=
BLITZ_INCDIR=
# Library locations for fftw
FFTW_LIBDIR=
FFTW_INCDIR=
# Library locations for UMFPACK
UMF_INCDIR=
UMF_LIBDIR=
# Location/library for BLAS
BLAS_LIB="-lblas"
BLAS_LIBDIR=
BLAS_INCDIR=
sutton.gcc.openmpi.blas.sh
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment