-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removing CGNS support for versions older than 3.3.0 (#30)
- Loading branch information
Showing
4 changed files
with
14 additions
and
29 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = "2.3.0" | ||
__version__ = "2.4.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,17 @@ | ||
# Define the CNGS include directory and linking flags for CGNSlib. We | ||
# can use 3.2.x OR CGNS 3.3+. You must define which version is being | ||
# employed as shown below. We are assuming that HDF5 came from PETSc | ||
# so it is included in ${PETSC_LIB}. Otherwise you will have to | ||
# specify the HDF5 library. | ||
|
||
# ----------- CGNS ------------------ | ||
# CGNS_VERSION_FLAG= # for CGNS 3.2.x | ||
CGNS_VERSION_FLAG=-DUSECGNSMODULE # for CGNS 3.3.x | ||
# ------- Define CGNS Inlcude and linker flags ------------------------- | ||
# Define the CGNS include directory and linking flags for the CGNS library. | ||
# We are assuming that HDF5 came from PETSc so it is included in ${PETSC_LIB}. | ||
# Otherwise you will have to specify the HDF5 library. | ||
CGNS_INCLUDE_FLAGS=-I$(CGNS_HOME)/include | ||
CGNS_LINKER_FLAGS=-L$(CGNS_HOME)/lib -lcgns | ||
|
||
# Gfortran compiler | ||
CC = gcc | ||
CFLAGS = -O2 -fPIC | ||
FC = gfortran | ||
FFLAGS= -O2 -fdefault-real-8 -g -fPIC ${CGNS_VERSION_FLAG} | ||
FFLAGS= -O2 -fdefault-real-8 -g -fPIC | ||
|
||
# Define potentially different python, python-config and f2py executables: | ||
PYTHON = python | ||
PYTHON-CONFIG = python3-config # use python-config for python 2 | ||
F2PY = f2py | ||
F2PY = f2py |
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 |
---|---|---|
@@ -1,22 +1,17 @@ | ||
# Define the CNGS include directory and linking flags for CGNSlib. We | ||
# can use 3.2.x OR CGNS 3.3+. You must define which version is being | ||
# employed as shown below. We are assuming that HDF5 came from PETSc | ||
# so it is included in ${PETSC_LIB}. Otherwise you will have to | ||
# specify the HDF5 library. | ||
|
||
# ----------- CGNS ------------------ | ||
# CGNS_VERSION_FLAG= # for CGNS 3.2.x | ||
CGNS_VERSION_FLAG=-DUSECGNSMODULE # for CGNS 3.3.x | ||
# ------- Define CGNS Inlcude and linker flags ------------------------- | ||
# Define the CGNS include directory and linking flags for the CGNS library. | ||
# We are assuming that HDF5 came from PETSc so it is included in ${PETSC_LIB}. | ||
# Otherwise you will have to specify the HDF5 library. | ||
CGNS_INCLUDE_FLAGS=-I$(CGNS_HOME)/include | ||
CGNS_LINKER_FLAGS=-L$(CGNS_HOME)/lib -lcgns | ||
|
||
# Intel Fortran Compiler | ||
CC = gcc | ||
CFLAGS = -O2 -fPIC | ||
FC = ifort | ||
FFLAGS = -O2 -r8 -g -fPIC ${CGNS_VERSION_FLAG} | ||
FFLAGS = -O2 -r8 -g -fPIC | ||
|
||
# Define potentially different python, python-config and f2py executables: | ||
PYTHON = python | ||
PYTHON-CONFIG = python3-config # use python-config for python 2 | ||
F2PY = f2py | ||
F2PY = f2py |
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