Skip to content

Commit

Permalink
Updated for 2.3.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
ncollier committed Oct 5, 2021
1 parent 257ad57 commit 2387c91
Show file tree
Hide file tree
Showing 9 changed files with 535 additions and 14 deletions.
2 changes: 1 addition & 1 deletion dist/.gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
out
out/
doxygen/latex
doxygen/html
14 changes: 10 additions & 4 deletions dist/Manual/Typical/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -173,13 +173,19 @@ fi
# Repast HPC
if [[ $1 == *rhpc* ]]
then
#cd ..
#CXX="$MPI_COMPILER_INVOCATION" CXXLD="$MPI_COMPILER_INVOCATION" ./configure --prefix=$REPAST_DIR --#with-boost-include=$BASE_DIR/$BOOST_DIR/include --with-boost-lib-dir=$BASE_DIR/$BOOST_DIR/lib --with-#boost-lib-suffix=-mt --with-netcdf-cxx=$BASE_DIR/$NETCDFCXX_DIR --with-netcdf=$BASE_DIR/$NETCDF_DIR --#with-curl-include=$BASE_DIR/$CURL_DIR/include --with-curl-lib-dir=$BASE_DIR/$CURL_DIR/lib
cd ..
CXX="$MPI_COMPILER_INVOCATION" CXXLD="$MPI_COMPILER_INVOCATION" ./configure --prefix=$REPAST_DIR \
--with-boost-include=$BASE_DIR/$BOOST_DIR/include \
--with-boost-lib-dir=$BASE_DIR/$BOOST_DIR/lib \
--with-boost-lib-suffix=-mt \
--with-netcdf-cxx=$BASE_DIR/$NETCDFCXX_DIR \
--with-netcdf=$BASE_DIR/$NETCDF_DIR
# --with-curl-include=$BASE_DIR/$CURL_DIR/include --with-curl-lib-dir=$BASE_DIR/$CURL_DIR/lib
# Add V=1 after "make" to see verbose compiler output
make
make install
cd MANUAL_INSTALL
# comment out "cd .." through "cd MANUAL_INSTALL" above and uncomment
# the the line below to compile using the Makefile
make -f Makefile CXX=$MPI_COMPILER_INVOCATION CXXLD="$MPI_COMPILER_INVOCATION" INSTALL_DIR=$REPAST_DIR BOOST_INCLUDE_DIR=$BASE_DIR/$BOOST_DIR/include BOOST_LIB_DIR=$BASE_DIR/$BOOST_DIR/lib BOOST_INFIX=-mt NETCDF_INCLUDE_DIR=$BASE_DIR/$NETCDF_DIR/include NETCDF_LIB_DIR=$BASE_DIR/$NETCDF_DIR/lib NETCDF_CXX_INCLUDE_DIR=$BASE_DIR/$NETCDFCXX_DIR/include NETCDF_CXX_LIB_DIR=$BASE_DIR/$NETCDFCXX_DIR/lib CURL_INCLUDE_DIR=$BASE_DIR/$CURL_DIR/include CURL_LIB_DIR=$BASE_DIR/$CURL_DIR/lib
# the the line below to compile using the Makefile in Manual Install rather than with configure
# make -f Makefile CXX=$MPI_COMPILER_INVOCATION CXXLD="$MPI_COMPILER_INVOCATION" INSTALL_DIR=$REPAST_DIR BOOST_INCLUDE_DIR=$BASE_DIR/$BOOST_DIR/include BOOST_LIB_DIR=$BASE_DIR/$BOOST_DIR/lib BOOST_INFIX=-mt NETCDF_INCLUDE_DIR=$BASE_DIR/$NETCDF_DIR/include NETCDF_LIB_DIR=$BASE_DIR/$NETCDF_DIR/lib NETCDF_CXX_INCLUDE_DIR=$BASE_DIR/$NETCDFCXX_DIR/include NETCDF_CXX_LIB_DIR=$BASE_DIR/$NETCDFCXX_DIR/lib CURL_INCLUDE_DIR=$BASE_DIR/$CURL_DIR/include CURL_LIB_DIR=$BASE_DIR/$CURL_DIR/lib
fi
1 change: 0 additions & 1 deletion dist/autotools/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
/configure
/configure.scan
/depcomp
/install-sh
/missing
/stamp-h1

Expand Down
2 changes: 1 addition & 1 deletion dist/autotools/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ CPPFLAGS := @CPPFLAGS@

CXX = @CXX@
CXXLD = @CXX@
CXXFLAGS = -g0 -Wall -O2 -std=c++11 -MMD -MP $(CPPFLAGS) -Wno-reorder -Wno-unused-variable -Wno-sign-compare -I./src
CXXFLAGS = -g0 -Wall -O2 -std=c++11 -MMD -MP $(CPPFLAGS) -Wno-reorder -Wno-unused-variable -Wno-sign-compare -Wno-parentheses -I./src

LIB_LD_FLAGS = $(LDFLAGS)
LIBS = @BOOST_MPI_LIBS@ @BOOST_SERIALIZATION_LIBS@ @BOOST_FILESYSTEM_LIBS@ @BOOST_SYSTEM_LIBS@
Expand Down
Loading

0 comments on commit 2387c91

Please sign in to comment.