diff --git a/MakeSolver.sh b/MakeSolver.sh index 5c3c8ba..63b2c26 100644 --- a/MakeSolver.sh +++ b/MakeSolver.sh @@ -7,6 +7,9 @@ # minimal installation of the latest Fedora version. The intent is to load # all dependencies in a constructive way. # +# Note that this is intended to be executed in a build machine that already +# has the solver code installed in the directory where the script is running. +# # Author and Copyright: Geir Horn, University of Oslo # Contact: Geir.Horn@mn.uio.no # License: MPL2.0 (https://www.mozilla.org/en-US/MPL/2.0/) @@ -16,7 +19,7 @@ # as root on the machine - put 'sudo' in front if the build user is not root. dnf --assumeyes install gcc-c++ make git boost boost-devel ccache \ -qpid-proton-cpp* jsoncpp-devel coin-or-Couenne wget +qpid-proton-cpp* json* coin-or-Couenne wget # Cloning the open source dependencies @@ -24,9 +27,9 @@ git clone https://github.com/jarro2783/cxxopts.git CxxOpts git clone https://github.com/GeirHo/TheronPlusPlus.git Theron++ mkdir Theron++/Bin -# Clone the solver component +# Clone the solver component (if it is not in this build directory already) -git clone https://opendev.org/nebulous/optimiser-solver.git Solver +#git clone https://opendev.org/nebulous/optimiser-solver.git Solver # Installing the AMPL library @@ -34,11 +37,19 @@ wget https://portal.ampl.com/external/?url=\ https://portal.ampl.com/dl/amplce/ampl.linux64.tgz -O ampl.linux64.tgz tar --file=ampl.linux64.tgz --extract mv ampl.linux-intel64 AMPL -rm ampl.linux64.tgz + #cp ampl.lic AMPL -# Building the solver component +# Buildirm ampl.linux64.tgzng the solver component +# Note: use this make command if the solver is installed in a +# subdirectory. -make -C Solver SolverComponent -e THERON=../Theron++ \ -AMPL_INCLUDE=../AMPL/amplapi/include AMPL_LIB=../AMPL/amplapi/lib \ -CxxOpts_DIR=../CxxOpts/include +#make -C Solver SolverComponent -e THERON=../Theron++ \ +#AMPL_INCLUDE=../AMPL/amplapi/include AMPL_LIB=../AMPL/amplapi/lib \ +#CxxOpts_DIR=../CxxOpts/include + +# Use this script if the solver is already in the current directory + +make SolverComponent -e THERON=./Theron++ \ +AMPL_INCLUDE=./AMPL/amplapi/include AMPL_LIB=./AMPL/amplapi/lib \ +CxxOpts_DIR=./CxxOpts/include