Skip to content

Commit

Permalink
Minor update to SConstruct
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael-P-Allen committed Jan 1, 2024
1 parent bf057ab commit 16e7fdc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

import os, sys

# This has been tested using SCons v4.5.2, gfortran v12.3.0,
# using MacOS Ventura (13.3.1) with compilers and libraries installed through MacPorts.
# This has been tested using SCons v4.6.0, gfortran v13.2.0,
# using MacOS (Ventura 13.6.3, Xcode 15.1) with compilers and libraries installed through MacPorts.
# It may not work on your system. It is possible that you can get it to work by
# changing the flags and library/include paths defined in the following few statements.
# The most likely trouble spots are the programs that use the non-standard
Expand Down Expand Up @@ -52,7 +52,7 @@ env_fftw=env_normal.Clone()
env_fftw.Append(F90PATH=[FFTW_INCLUDE])
env_fftw.Append(LIBPATH=[FFTW_LIBPATH],LIBS=FFTW_LIBS)

env_mpi=env_normal.Clone(F90='mpif90',LINK='mpif90')
env_mpi=env_normal.Clone(F90='mpifort',LINK='mpifort')

env_omp=env_normal.Clone()
env_omp.Append(F90FLAGS=OMP_FLAGS,LINKFLAGS=OMP_LINKFLAGS)
Expand Down

0 comments on commit 16e7fdc

Please sign in to comment.