[Trilinos-Users] Trying to install basic Trilinos

Raeth, Peter PRaeth at hpti.com
Fri Feb 25 12:30:40 MST 2011


Many thanks to all who have responded.

Having deleted the old cmake stuff I now have to locate the blas libraries on this particular machine.

Will keep at it and report back.


Best,

Peter.

Peter G. Raeth, Ph.D.
Senior Staff Scientist
Signal and Image Processing
High Performance Technologies, Inc
937-904-5147
praeth at hpti.com

________________________________________
From: chris at paratools.com [chris at paratools.com]
Sent: Friday, February 25, 2011 2:28 PM
To: Bartlett, Roscoe A
Cc: Heroux, Mike; Cole,David; Raeth, Peter; trilinos-users at software.sandia.gov
Subject: Re: [Trilinos-Users] Trying to install basic Trilinos

Hi Peter,
Here is a copy of my build_script for trilinos
I call it from a master build script that loads the module environment
and I set the the BUILD_DIR and INSTALL_DIR
it also point to the location for the package sources PKG_DIR

You need to install the lastest version of cmake
I built this using different gnu compilers version and different
mpi versions(openmpi) it is fairly robust and generates a couple of
log files as it runs.

#!/bin/csh
############################################################
##  configure and install of Trilinos-10.6.2
##  by Chris Bording 17 Sep 2010
##    modified 23 Dec 2010
############################################################
# application variables
set APP_NAME=trilinos
set APP_VERSION=10.6.2

#set EXTRA_ARGS=$@

set ACTS_BUILD=${BUILD_DIR}
set ACTS_INSTALL=${INSTALL_DIR}

set TRILINOS_PATH=${ACTS_INSTALL}/${APP_NAME}-${APP_VERSION}
set TRILINOS_HOME=${ACTS_BUILD}/${APP_NAME}-${APP_VERSION}-Source

# copy souce packages to build directory.

cd ${ACTS_BUILD}

cp ${PKG_DIR}/${APP_NAME}-${APP_VERSION}-Source.tar.gz .

# rm any previous build tar file of same version
rm -rf ${APP_NAME}-${APP_VERSION}-Source
rm -f ${APP_NAME}-${APP_VERSION}-Source.tar

you'll want to change the paths for the blas,lapack and mpilib for
your system.
but it just might work for you.

# unzip and extract tar file
gunzip ${APP_NAME}-${APP_VERSION}-Source.tar.gz
tar -xf ${APP_NAME}-${APP_VERSION}-Source.tar

cd ${TRILINOS_HOME}

mkdir build
ls -al
cd build

echo begin cmake in `pwd`
#set EXTRA_ARGS=$@

cmake \
        -D CMAKE_INSTALL_PREFIX:PATH=$TRILINOS_PATH \
        -D CMAKE_BUILD_TYPE:STRING=RELEASE \
        -D CMAKE_CXX_FLAGS:STRING="-m64" \
        -D CMAKE_C_FLAGS:STRING="-m64" \
        -D Trilinos_ENABLE_Mesquite:BOOL=ON \
        -D Trilinos_ENABLE_ML:BOOL=ON \
        -D Trilinos_ENABLE_Epetra:BOOL=ON \
        -D Trilinos_ENABLE_EpetraExt:BOOL=ON \
        -D Trilinos_ENABLE_Tpetra:BOOL=ON \
        -D Trilinos_ENABLE_Jpetra:BOOL=ON \
        -D Trilinos_ENABLE_Kokkos:BOOL=ON \
        -D Trilinos_ENABLE_AztecOO:BOOL=ON \
        -D Trilinos_ENABLE_Zoltan:BOOL=ON \
        -D Trilinos_ENABLE_FEI:BOOL=ON \
        -D Trilinos_ENABLE_Sacado:BOOL=ON \
        -D Trilinos_ENABLE_Anasazi:BOOL=ON \
        -D Trilinos_ENABLE_Meros:BOOL=ON \
        -D Trilinos_ENABLE_Belos:BOOL=ON \
        -D Trilinos_ENABLE_Komplex:BOOL=ON \
        -D Trilinos_ENABLE_TESTS:BOOL=ON \
        -D BLAS_LIBRARY_DIRS:PATH=/usr/lib64 \
        -D BLAS_LIBRARY_NAMES:STRING="blas" \
        -D LAPACK_LIBRARY_DIRS:PATH=/usr/lib64 \
        -D LAPACK_LIBRARY_NAMES:STRING="lapack" \
        -D TPL_ENABLE_MPI:BOOL=ON \
        -D MPI_BASE_DIR:PATH="${MPIHOME}" \
        -D MPI_EXEC:FILEPATH="mpirun" \
        -D MPI_EXEC_MAX_NUMPROCS:STRING=4 \
        -D MPI_EXEC_NUMPROCS_FLAG:STRING=-np \
        -D DART_TESTING_TIMEOUT:STRING=600 \
     ${TRILINOS_HOME}


#${TRILINOS_HOME}
#-D CMAKE_INSTALL_PREFIX:PATH=$TRILINOS_PATH \

make >& make_${APP_NAME}-${APP_VERSION}.log

make test >& make_${APP_NAME}-${APP_VERSION}_test.log

make install >& make_${APP_NAME}-${APP_VERSION}_install.log

cd ${TRILINOS_PATH}

####################################################################3


Quoting "Bartlett, Roscoe A" <rabartl at sandia.gov>:

> The part about deleting the CMakeCache.txt file under the source
> directory is not obvious and I think this might have bitten me a few
> years ago too when I first started using CMake (if I can remember
> that far back).
>
> - Ross
>
>
>> -----Original Message-----
>> From: trilinos-users-bounces at software.sandia.gov [mailto:trilinos-
>> users-bounces at software.sandia.gov] On Behalf Of Heroux, Mike
>> Sent: Friday, February 25, 2011 11:28 AM
>> To: Bartlett, Roscoe A; Cole,David; Raeth, Peter
>> Cc: trilinos-users at software.sandia.gov
>> Subject: Re: [Trilinos-Users] Trying to install basic Trilinos
>>
>> Thanks Ross.  I should have remembered this.  It is always the first
>> thing to try when puzzled by cmake...
>>
>> Mike
>>
>>
>> On 2/25/11 11:46 AM, "Roscoe Bartlett" <rabartl at sandia.gov> wrote:
>>
>> All,
>>
>> I just made a commit to Trilinos so that when someone tries to do an
>> in-source configuration of Trilinos they will get:
>>
>> -----------------------------------------------------------------------
>> --------------------
>>
>> [rabartl at brain Trilinos]$ cmake .
>>
>> Configuring Trilinos build directory
>>
>> CMake Error at CMakeLists.txt:15 (MESSAGE):
>>   ERROR!
>>
>> CMAKE_CURRENT_SOURCE_DIR=/home/rabartl/PROJECTS/Trilinos.base/Trilinos
>> ==
>>
>> CMAKE_CURRENT_BINARY_DIR=/home/rabartl/PROJECTS/Trilinos.base/Trilinos
>>
>>   Trilinos does not support in source builds!
>>
>>   NOTE: You must now delete the CMakeCache.txt file and the CMakeFiles/
>>   directory under the source directory for Trilinos or you will not be
>> able
>>   to configure Trilinos correctly!
>>
>>   You must now run something like:
>>
>>     $ rm -r CMakeCache.txt CMakeFiles/
>>
>>   Please create a different directory and configure Trilinos under that
>> such
>>   as:
>>
>>     $ mkdir MY_BUILD
>>     $ cd MY_BUILD
>>     $ cmake [OPTIONS] ..
>>
>> -----------------------------------------------------------------------
>> --------------------
>>
>> This will active in the next release of Trilinos.
>>
>> Hopefully this will avoid future problems and email traffic on this
>> topic in the future.
>>
>> - Ross
>>
>>
>>
>>
>>
>>
>> From: trilinos-users-bounces at software.sandia.gov [mailto:trilinos-
>> users-bounces at software.sandia.gov] On Behalf Of David Cole
>> Sent: Friday, February 25, 2011 9:31 AM
>> To: Raeth, Peter
>> Cc: trilinos-users at software.sandia.gov
>> Subject: Re: [Trilinos-Users] Trying to install basic Trilinos
>>
>> Delete the CMakeCache.txt that is probably in your source directory and
>> try again.
>>
>>
>>
>> Once an in-source build has been attempted, you have to remove the
>> stuff CMake writes into the source tree to get rid of the cache.
>>
>> Try starting over with a clean source tree. That should do it.
>> Everything else looks correct.
>>
>>
>>
>>
>>
>> On Fri, Feb 25, 2011 at 11:03 AM, Raeth, Peter <PRaeth at hpti.com> wrote:
>> Hi Brent.
>>
>> Copied do_configure to the build directory and modified it to try what
>> you said. The new script is:
>>
>> hawk-0:/app2/comenv/ALTIX4700/.unsupported/trilinos-10.6.2-
>> Source/build/ cat ./do_configure.sh
>>
>> #!/bin/csh -x
>>
>> setenv TRILINOS_HOME ../
>>
>> setenv PATH /app2/comenv/ALTIX4700/pkgs/cmake-2.8.1/bin:$PATH
>> pwd
>>
>>
>>        cmake \
>>          -D CMAKE_BUILD_TYPE:STRING=DEBUG \
>>          -D
>> CMAKE_INSTALL_PREFIX:PATH=/app2/comenv/ALTIX4700/.unsupported/trilinos-
>> build \
>>          -D Trilinos_ENABLE_ALL_OPTIONAL_PACKAGES:BOOL=ON \
>>          -D Trilinos_ENABLE_ALL_FORWARD_DEP_PACKAGES:BOOL=ON \
>>          -D Trilinos_ENABLE_TESTS:BOOL=ON \
>>          -D Trilinos_ENABLE_Epetra:BOOL=ON \
>>          -D Trilinos_ENABLE_Triutils:BOOL=ON \
>>          -D Trilinos_ENABLE_Anasazi:BOOL=ON \
>>          -D Trilinos_ENABLE_Didasko:BOOL=ON \
>>          $TRILINOS_HOME
>>
>> exit
>> hawk-0:/app2/comenv/ALTIX4700/.unsupported/trilinos-10.6.2-
>> Source/build/
>>
>>
>>
>> Received the same error message:
>>
>> hawk-0:/app2/comenv/ALTIX4700/.unsupported/trilinos-10.6.2-
>> Source/build/ ./do_configure.sh
>>
>> setenv TRILINOS_HOME ../
>> setenv PATH /app2/comenv/ALTIX4700/pkgs/cmake-
>> 2.8.1/bin:/app2/comenv/ALTIX4700/pkgs/cmake-
>> 2.8.1/bin:/usr/local/krb5/bin:/usr/local/ossh/bin:/opt/pbs/default/bin:
>> /opt/intel/idb/9.1.042/bin:/opt/intel/cc/9.1.042/bin:/opt/intel/fc/9.1.
>> 036/bin:/hafs2/praeth/bin:/hafs2/praeth/bin/linux.altix:/usr/ucb:/bin:/
>> usr/bin:/hafs_linux.altix:/app/csiapps/base/linux.altix/bin:/app/bciapp
>> s/base/linux.altix/bin:/usr/local:/usr/bin/X11:/usr/local/bin:/opt/gnom
>> e/bin:.
>> pwd
>> /aloe/app/comenv/ALTIX4700/.unsupported/trilinos-10.6.2-Source/build
>> cmake -D CMAKE_BUILD_TYPE:STRING=DEBUG -D
>> CMAKE_INSTALL_PREFIX:PATH=/app2/comenv/ALTIX4700/.unsupported/trilinos-
>> build -D Trilinos_ENABLE_ALL_OPTIONAL_PACKAGES:BOOL=ON -D
>> Trilinos_ENABLE_ALL_FORWARD_DEP_PACKAGES:BOOL=ON -D
>> Trilinos_ENABLE_TESTS:BOOL=ON -D Trilinos_ENABLE_Epetra:BOOL=ON -D
>> Trilinos_ENABLE_Triutils:BOOL=ON -D Trilinos_ENABLE_Anasazi:BOOL=ON -D
>> Trilinos_ENABLE_Didasko:BOOL=ON ../
>>
>>
>> Configuring Trilinos build directory
>>
>> CMake Error at CMakeLists.txt:15 (MESSAGE):
>>  Error,
>>  CMAKE_CURRENT_SOURCE_DIR=/app2/comenv/ALTIX4700/.unsupported/trilinos-
>> 10.6.2-Source
>>  ==
>>  CMAKE_CURRENT_BINARY_DIR=/app2/comenv/ALTIX4700/.unsupported/trilinos-
>> 10.6.2-Source
>>
>> Trilinos does not support in source builds!
>>
>>
>> -- Configuring incomplete, errors occurred!
>> exit
>> hawk-0:/app2/comenv/ALTIX4700/.unsupported/trilinos-10.6.2-
>> Source/build/
>>
>>
>>
>> Thanks for the input though.
>>
>>
>>
>> Best,
>>
>> Peter.
>>
>> Peter G. Raeth, Ph.D.
>> Senior Staff Scientist
>> Signal and Image Processing
>> High Performance Technologies, Inc
>> 937-904-5147
>> praeth at hpti.com
>>
>> ________________________________________
>> From: trilinos-users-bounces at software.sandia.gov [trilinos-users-
>> bounces at software.sandia.gov] on behalf of Perschbacher, Brent M
>> [bmpersc at sandia.gov]
>> Sent: Friday, February 25, 2011 10:52 AM
>>
>> To: Raeth, Peter; trilinos-users at software.sandia.gov
>> Subject: Re: [Trilinos-Users] Trying to install basic Trilinos
>>
>> Peter,
>>  I believe what you are trying to do should work. Both configure
>> scripts
>> seem fine to me. I use a build tree that is a sub-directory of my
>> source
>> tree for pretty much everything I do with Trilinos and it works fine. I
>> do
>> however, have the configure script in my build directory and then use
>> "../"
>> as my path to the Trilinos source, but what you have should work too.
>> The
>> only thing that I can think of to check is if the cd to your build
>> directory
>> is failing silently, which might happen if the directory doesn't exist.
>> It
>> has been a long time since I've used c shell that I don't recall its
>> behavior for that. Can you put "pwd" right before your cmake call to
>> see
>> which directory you are in right before you call cmake.
>>
>> Brent
>>
>>
>> On 2/25/11 7:32 AM, "Raeth, Peter" <PRaeth at hpti.com> wrote:
>>
>> > If I do "which cmake" at the command line then I get "cmake: Command
>> not
>> > found."  If I then extend the path, "setenv PATH
>> > /app2/comenv/ALTIX4700/pkgs/cmake-2.8.1/bin:$PATH", I get
>> > "/app2/comenv/ALTIX4700/pkgs/cmake-2.8.1/bin/cmake". Did this from
>> > trilinos-build. I also ran do_configure from trilinos-build.
>> >
>> > Lets see what others say as the world wakes up.
>> >
>> >
>> > Best,
>> >
>> > Peter.
>> >
>> > Peter G. Raeth, Ph.D.
>> > Senior Staff Scientist
>> > Signal and Image Processing
>> > High Performance Technologies, Inc
>> > 937-904-5147
>> > praeth at hpti.com
>> >
>> > ________________________________________
>> > From: trilinos-users-bounces at software.sandia.gov
>> > [trilinos-users-bounces at software.sandia.gov] on behalf of Heroux,
>> Mike
>> > [MHeroux at csbsju.edu]
>> > Sent: Friday, February 25, 2011 9:26 AM
>> > To: Raeth, Peter; trilinos-users at software.sandia.gov
>> > Subject: Re: [Trilinos-Users] Trying to install basic Trilinos
>> >
>> > Actually, what I said was not on point.  Sorry.  The installation
>> path has
>> > nothing to do with this issue (although is a generally good idea).
>> Need more
>> > coffee ...
>> >
>> > It appears that somehow cmake is being executed from the source
>> directory,
>> > even though you appear to be in a different directory.  Can you
>> manually step
>> > through the script to make sure cmake is being executed in the
>> trilinos-build
>> > directory?
>> >
>> > If this doesn't help, there are others who are more capable than I am
>> who will
>> > be online soon.
>> >
>> > Sorry to confuse things.
>> >
>> > Mike
>> >
>> >
>> > On 2/25/11 8:16 AM, "Raeth, Peter" <PRaeth at hpti.com> wrote:
>> >
>> > Thank you for writing Mike.
>> >
>> > What led me to use the original script was this comment in the
>> install
>> > instructions:
>> >
>> > C) Configuring (Makefile Generator)
>> > -----------------------------------
>> >
>> >
>> > (*) Setting up a build directory:
>> >
>> >     $ mkdir SOME_BUILD_DIR
>> >     $ cd SOME_BUILD_DIR
>> >
>> >   NOTE: You can create a build directory from any location you would
>> like.  It
>> >   can be a sub-directory of the Trilinos base source directory or
>> anywhere
>> >   else.
>> >
>> >
>> >
>> >
>> > Based on what you said, I created a build directory outside the
>> source
>> > directory. The new script is:
>> >
>> > #!/bin/csh -x
>> >
>> > setenv TRILINOS_HOME
>> > /app2/comenv/ALTIX4700/.unsupported/trilinos-10.6.2-Source
>> > setenv PATH /app2/comenv/ALTIX4700/pkgs/cmake-2.8.1/bin:$PATH
>> > cd /app2/comenv/ALTIX4700/.unsupported/trilinos-build
>> >
>> >         cmake \
>> >           -D CMAKE_BUILD_TYPE:STRING=DEBUG \
>> >           -D
>> >
>> CMAKE_INSTALL_PREFIX:PATH=/app2/comenv/ALTIX4700/.unsupported/trilinos-
>> build \
>> >           -D Trilinos_ENABLE_ALL_OPTIONAL_PACKAGES:BOOL=ON \
>> >           -D Trilinos_ENABLE_ALL_FORWARD_DEP_PACKAGES:BOOL=ON \
>> >           -D Trilinos_ENABLE_TESTS:BOOL=ON \
>> >           -D Trilinos_ENABLE_Epetra:BOOL=ON \
>> >           -D Trilinos_ENABLE_Triutils:BOOL=ON \
>> >           -D Trilinos_ENABLE_Anasazi:BOOL=ON \
>> >           -D Trilinos_ENABLE_Didasko:BOOL=ON \
>> >           $TRILINOS_HOME
>> >
>> > exit
>> >
>> > Am getting the same error:
>> >
>> > Configuring Trilinos build directory
>> >
>> > CMake Error at CMakeLists.txt:15 (MESSAGE):
>> >   Error,
>> >
>> >
>> CMAKE_CURRENT_SOURCE_DIR=/app2/comenv/ALTIX4700/.unsupported/trilinos-
>> 10.6.2-S
>> > ource
>> >   ==
>> >
>> >
>> CMAKE_CURRENT_BINARY_DIR=/app2/comenv/ALTIX4700/.unsupported/trilinos-
>> 10.6.2-S
>> > ource
>> >   Trilinos does not support in source builds!
>> >
>> >
>> > -- Configuring incomplete, errors occurred!
>> >
>> >
>> > It looks like the process is still trying to put the binary in the
>> source
>> > directory and it does not like that. Not being a cmake user, how do I
>> manually
>> > specify the location of the binary directory?
>> >
>> >
>> >
>> > Thanks,
>> >
>> > Peter.
>> >
>> > Peter G. Raeth, Ph.D.
>> > Senior Staff Scientist
>> > Signal and Image Processing
>> > High Performance Technologies, Inc
>> > 937-904-5147
>> > praeth at hpti.com
>> > ________________________________
>> > From: trilinos-users-bounces at software.sandia.gov
>> > [trilinos-users-bounces at software.sandia.gov] on behalf of Heroux,
>> Michael A
>> > [maherou at sandia.gov]
>> > Sent: Friday, February 25, 2011 8:45 AM
>> > To: Raeth, Peter; trilinos-users at software.sandia.gov
>> > Subject: Re: [Trilinos-Users] Trying to install basic Trilinos
>> >
>> > Peter,
>> >
>> > It appears that you are trying to build in the source directories,
>> which is
>> > not permitted.  If you add the following line to your script:
>> >
>> > -D CMAKE_INSTALL_PREFIX:PATH=$TRILINOS_HOME/ALTIX4700_BUILD \
>> >
>> >  or something similar, you should get past this issue.
>> >
>> > I hope this helps.
>> >
>> > Mike
>> >
>> > On 2/25/11 7:37 AM, "Raeth, Peter" <PRaeth at hpti.com
>> <UrlBlockedError.aspx> >
>> > wrote:
>> >
>> > In an effort to help users transition from shared to distributed-
>> memory
>> > machines, I am trying to install Trilinos on
>> > http://www.afrl.hpc.mil/hardware/hawk.php. This is my first
>> experience with
>> > Trilinos.
>> >
>> > Reading the installation guide at
>> > http://trilinos.sandia.gov/Trilinos10CMakeQuickstart.txt, I wrote the
>> > following script:
>> >
>> > hawk-0:/app2/comenv/ALTIX4700/.unsupported/trilinos-10.6.2-Source/
>> cat
>> > ./do_configure.sh
>> >
>> > #!/bin/csh -x
>> >
>> > setenv TRILINOS_HOME
>> > /app2/comenv/ALTIX4700/.unsupported/trilinos-10.6.2-Source
>> > setenv PATH /app2/comenv/ALTIX4700/pkgs/cmake-2.8.1/bin:$PATH
>> > cd $TRILINOS_HOME/build
>> >
>> >         cmake \
>> >           -D CMAKE_BUILD_TYPE:STRING=DEBUG \
>> >           -D Trilinos_ENABLE_ALL_OPTIONAL_PACKAGES:BOOL=ON \
>> >           -D Trilinos_ENABLE_ALL_FORWARD_DEP_PACKAGES:BOOL=ON \
>> >           -D CMAKE_BUILD_TYPE:STRING=DEBUG \
>> >           -D Trilinos_ENABLE_TESTS:BOOL=ON \
>> >           -D Trilinos_ENABLE_Epetra:BOOL=ON \
>> >           -D Trilinos_ENABLE_Triutils:BOOL=ON \
>> >           -D Trilinos_ENABLE_Anasazi:BOOL=ON \
>> >           -D Trilinos_ENABLE_Didasko:BOOL=ON \
>> >           $TRILINOS_HOME
>> >
>> > exit
>> >
>> > hawk-0:/app2/comenv/ALTIX4700/.unsupported/trilinos-10.6.2-Source/
>> >
>> >
>> >
>> >
>> > When I run this script I get the following error:
>> >
>> > hawk-0:/app2/comenv/ALTIX4700/.unsupported/trilinos-10.6.2-Source/
>> > ./do_configure.sh
>> >
>> > setenv TRILINOS_HOME
>> > /app2/comenv/ALTIX4700/.unsupported/trilinos-10.6.2-Source
>> > setenv PATH
>> > /app2/comenv/ALTIX4700/pkgs/cmake-
>> 2.8.1/bin:/usr/local/krb5/bin:/usr/local/oss
>> >
>> h/bin:/opt/pbs/default/bin:/opt/intel/idb/9.1.042/bin:/opt/intel/cc/9.1
>> .042/bi
>> >
>> n:/opt/intel/fc/9.1.036/bin:/hafs2/praeth/bin:/hafs2/praeth/bin/linux.a
>> ltix:/u
>> >
>> sr/ucb:/bin:/usr/bin:/hafs_linux.altix:/app/csiapps/base/linux.altix/bi
>> n:/app/
>> >
>> bciapps/base/linux.altix/bin:/usr/local:/usr/bin/X11:/usr/local/bin:/op
>> t/gnome
>> > /bin:.
>> > cd /app2/comenv/ALTIX4700/.unsupported/trilinos-10.6.2-Source/build
>> > cmake -D CMAKE_BUILD_TYPE:STRING=DEBUG -D
>> > Trilinos_ENABLE_ALL_OPTIONAL_PACKAGES:BOOL=ON -D
>> > Trilinos_ENABLE_ALL_FORWARD_DEP_PACKAGES:BOOL=ON -D
>> > CMAKE_BUILD_TYPE:STRING=DEBUG -D Trilinos_ENABLE_TESTS:BOOL=ON -D
>> > Trilinos_ENABLE_Epetra:BOOL=ON -D Trilinos_ENABLE_Triutils:BOOL=ON -D
>> > Trilinos_ENABLE_Anasazi:BOOL=ON -D Trilinos_ENABLE_Didasko:BOOL=ON
>> > /app2/comenv/ALTIX4700/.unsupported/trilinos-10.6.2-Source
>> >
>> > Configuring Trilinos build directory
>> >
>> > CMake Error at CMakeLists.txt:15 (MESSAGE):
>> >   Error,
>> >
>> >
>> CMAKE_CURRENT_SOURCE_DIR=/app2/comenv/ALTIX4700/.unsupported/trilinos-
>> 10.6.2-S
>> > ource
>> >   ==
>> >
>> >
>> CMAKE_CURRENT_BINARY_DIR=/app2/comenv/ALTIX4700/.unsupported/trilinos-
>> 10.6.2-S
>> > ource
>> >   Trilinos does not support in source builds!
>> >
>> >
>> > -- Configuring incomplete, errors occurred!
>> > exit
>> >
>> > hawk-0:/app2/comenv/ALTIX4700/.unsupported/trilinos-10.6.2-Source/
>> >
>> >
>> >
>> > Does anyone have advice?   I appreciate any insights the community
>> can offer.
>> >
>> >
>> > Thanks,
>> >
>> > Peter.
>> >
>> > Peter G. Raeth, Ph.D.
>> > Senior Staff Scientist
>> > Signal and Image Processing
>> > High Performance Technologies, Inc
>> > 937-904-5147
>> > praeth at hpti.com <UrlBlockedError.aspx>
>> >
>> >
>> >
>> > ________________________________
>> > _______________________________________________
>> > Trilinos-Users mailing list
>> > Trilinos-Users at software.sandia.gov
>> > http://software.sandia.gov/mailman/listinfo/trilinos-users
>> >
>> >
>> > _______________________________________________
>> > Trilinos-Users mailing list
>> > Trilinos-Users at software.sandia.gov
>> > http://software.sandia.gov/mailman/listinfo/trilinos-users
>> >
>> >
>> >
>> > _______________________________________________
>> > Trilinos-Users mailing list
>> > Trilinos-Users at software.sandia.gov
>> > http://software.sandia.gov/mailman/listinfo/trilinos-users
>>
>>
>> _______________________________________________
>> Trilinos-Users mailing list
>> Trilinos-Users at software.sandia.gov
>> http://software.sandia.gov/mailman/listinfo/trilinos-users
>>
>>
>>
>> _______________________________________________
>> Trilinos-Users mailing list
>> Trilinos-Users at software.sandia.gov
>> http://software.sandia.gov/mailman/listinfo/trilinos-users
>>
>>
>> ________________________________
>> _______________________________________________
>> Trilinos-Users mailing list
>> Trilinos-Users at software.sandia.gov
>> http://software.sandia.gov/mailman/listinfo/trilinos-users
>>
>>
>> _______________________________________________
>> Trilinos-Users mailing list
>> Trilinos-Users at software.sandia.gov
>> http://software.sandia.gov/mailman/listinfo/trilinos-users
>
> _______________________________________________
> Trilinos-Users mailing list
> Trilinos-Users at software.sandia.gov
> http://software.sandia.gov/mailman/listinfo/trilinos-users
>
>







More information about the Trilinos-Users mailing list