Hi! I'm trying to recompile the SCALE binaries in Linux. I did the build intructions as are in the manual, but I got some errors that I can't solve... Any idea would be very useful!!
The steps I followed are:
1. Installation of all programs (Fortran, C++ compiler, Lapack libraries, Cmake, and OpenMPI)
2. Setup configuration
Parallel SCALE (with MPI support)
cp script/configure_scale_mpi.sh build/gcc
chmod u+x build/gcc/configure_scale_mpi.sh
/configure_scale_mpi.sh ../..
3. When I run 'make install' from build/gcc, I get this error message:
[ 0%] Built target teuchoscomm
make[2]: *** No rule to make target '/opt/vendors/gcc-4.8.3/shared/lib/liblapack.so', needed by 'Trilinos/packages/teuchos/numer ics/src/libteuchosnumerics.so.6.2'. Stop.
CMakeFiles/Makefile2:1603: recipe for target 'Trilinos/packages/teuchos/numerics/src/CMakeFiles/teuchosnumerics.dir/all' failed
make[1]: *** [Trilinos/packages/teuchos/numerics/src/CMakeFiles/teuchosnumerics.dir/all] Error 2
Makefile:126: recipe for target 'all' failed
make: *** [all] Error 2
I though that it's looking for the wrong directory where the libraries are installed: /opt/vendors/gcc-4.8.3/shared/lib/liblapack.so. But I have no idea where exactly these libraries are installed or placed. Maybe I did a wrong configuration at some step. Any idea about the source of error?
Thank you so much!!