Skip to content

Commit

Permalink
Merge branch 'jose/release/order-of-includes' into 'release'
Browse files Browse the repository at this point in the history
makefile: place SLEPc includes before PETSc includes

See merge request slepc/slepc!523
  • Loading branch information
joseeroman committed Apr 2, 2023
2 parents 3b7d6b3 + 943701b commit 4aa7bc1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/slepc/conf/slepc_variables
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ SLEPC_F_SH_LIB_PATH = ${FC_LINKER_SLFLAG}${SLEPC_LIB_DIR}

# Redefine variables in PETSc makefiles
INSTALL_LIB_DIR = ${SLEPC_LIB_DIR}
CCPPFLAGS = ${PETSC_CCPPFLAGS} ${SLEPC_CCPPFLAGS}
CXXCPPFLAGS = ${PETSC_CXXCPPFLAGS} ${SLEPC_CXXCPPFLAGS}
FCPPFLAGS = ${PETSC_FCPPFLAGS} ${SLEPC_FCPPFLAGS}
CUDACPPFLAGS = ${PETSC_CUDACPPFLAGS} ${SLEPC_CUDACPPFLAGS}
CCPPFLAGS = ${SLEPC_CCPPFLAGS} ${PETSC_CCPPFLAGS}
CXXCPPFLAGS = ${SLEPC_CXXCPPFLAGS} ${PETSC_CXXCPPFLAGS}
FCPPFLAGS = ${SLEPC_FCPPFLAGS} ${PETSC_FCPPFLAGS}
CUDACPPFLAGS = ${SLEPC_CUDACPPFLAGS} ${PETSC_CUDACPPFLAGS}

# Variables for the different SLEPc modules
SLEPC_SYS_LIB_BASIC = -lslepcsys
Expand Down

0 comments on commit 4aa7bc1

Please sign in to comment.