You are not logged in.

#1 2019-02-17 03:25:49

promach
Member
Registered: 2016-05-18
Posts: 96

[REQUEST] Xyce circuit simulator

I am trying to build a PKGBUILD file for Xyce circuit simulator

mkdir my_build
cd my_build
/path/to/Xyce/configure [configure options]
make
sudo make install


See the "Parallel Builds" section as well. Use search keyword


/path/to/Xyce/configure \
CXXFLAGS="-O3" \
ARCHDIR="$HOME/XyceLibs/Parallel" \
CPPFLAGS="-I/usr/include/suitesparse" \
--enable-mpi \
CXX=mpicxx \
CC=mpicc \
F77=mpif77

NOTE: If you are using Trilinos 12.4.x, or are building Trilinos 12.6.3  through 12.12.1 with C++11 enabled, you will need to add "-std=c++11" to CXXFLAGS.

The package dependency includes  trilinos arch linux package
But I am not sure if this packaged trilinos is compiled with c++11 or not

Have anyone build such PKGBUILD for Xyce before ?

Offline

#2 2019-02-17 04:11:57

promach
Member
Registered: 2016-05-18
Posts: 96

Re: [REQUEST] Xyce circuit simulator

Why am I having the following pkgver error ?

[phung@archlinux Xyce]$ makepkg -s
==> Making package: Xyce 6.10-1 (Sun 17 Feb 2019 12:10:18 PM +08)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
  -> Found Xyce-6.10.tar.gz
==> Validating source files with md5sums...
    Xyce-6.10.tar.gz ... Skipped
==> Extracting sources...
  -> Extracting Xyce-6.10.tar.gz with bsdtar
==> Starting pkgver()...
==> ERROR: pkgver is not allowed to contain colons, forward slashes, hyphens or whitespace.
==> ERROR: pkgver() generated an invalid version: Xyce-6.10/

# Maintainer: promach
pkgname=Xyce
pkgver=6.10
pkgrel=1
pkgdesc="The Xyce Parallel Electronic Simulator is a SPICE-compatible circuit simulator"
arch=('x86_64')
url="https://xyce.sandia.gov/downloads/_assets/documents/Xyce-6.10.tar.gz"
license=('GPL')
depends=('trilinos')
makedepends=()
source=('./Xyce-6.10.tar.gz')
md5sums=('SKIP')

pkgver() {
  tar -zxvf "${source}"
  cd "${pkgname}-${pkgver}"
}

package() {
   cd "${pkgname}"
   make PREFIX=/usr DESTDIR="$pkgdir" install
}

Offline

#3 2019-02-17 04:24:52

jamespharvey20
Member
Registered: 2015-06-09
Posts: 129

Re: [REQUEST] Xyce circuit simulator

So someone else doesn't spend time responding, discussed in IRC: the "trilinos" package doesn't appear to be compiled using c++11; "pkgver()" is failing because of slash and shouldn't exist since it's a static version; source should be what's the url, and url should be just the website; fixing the cd in package...

Offline

#4 2019-02-17 04:47:19

promach
Member
Registered: 2016-05-18
Posts: 96

Re: [REQUEST] Xyce circuit simulator

How do I build trilinos from scratch within the following PKGBUILD ?

Note: Xyce has some special options for trilinos that the available system package for trilinos does not have

configure: error: Your Trilinos was not built with the correct options and does not have COMPLEX support built into Teuchos.
Please rebuild Trilinos using the options specified in the Xyce building guide.

Refer to Trilinos for Xyce and search for keywords "Building Trilinos for Parallel Xyce"

# Maintainer: promach
pkgname=Xyce
pkgver=6.10
pkgrel=1
pkgdesc="The Xyce Parallel Electronic Simulator is a SPICE-compatible circuit simulator"
arch=('x86_64')
url="https://xyce.sandia.gov/about_xyce/index.html"
license=('GPL')
depends=('bison' 'trilinos')
makedepends=()
source=('./Xyce-6.10.tar.gz')
md5sums=('SKIP')

package() {
  tar -zxvf "${source}"
  cd "${pkgname}-${pkgver}"

  ./configure \
  CXXFLAGS="-O3" \
  ARCHDIR="$HOME/XyceLibs/Parallel" \
  CPPFLAGS="-I/usr/include/suitesparse" \
  --enable-mpi \
  CXX=mpicxx \
  CC=mpicc \
  F77=mpif77

  make -j${nproc}
  make -j${nproc} PREFIX=/usr DESTDIR="$pkgdir" install
}

Last edited by promach (2019-02-17 04:51:01)

Offline

#5 2019-02-17 09:45:33

jamespharvey20
Member
Registered: 2015-06-09
Posts: 129

Re: [REQUEST] Xyce circuit simulator

promach wrote:

How do I build trilinos from scratch within the following PKGBUILD ?

You don't.  In this situation, each of them gets its own PKGBUILD.

This is untested, but I hope will do the trick.  I've never used trilinos or xyce.  This should build a package "trilinos-complex".  Then install this, before trying to build your xyce.

Change your xyce PKGBUILD to require "trilinos-complex", as it needs this compilation option to have been used.

It looks like "trilinos"/"trilinos-complex" may take a considerable amount of time to build, but I'm not positive.

# Contributor: Alad Wenter <alad@archlinux.org>
# Contributor: Jingbei Li <i@jingbei.li>
# Contributor: Simon Pintarelli <simon.pintarelli@gmail.com>
# Contributor: Feng Wang <wanng.fenng@gmail.com>
pkgname=trilinos-complex
pkgver=12.12.1
_pkgver=${pkgver//./-}
pkgrel=4
pkgdesc="algorithms for the solution of large-scale scientific problems"                                                                     
arch=('x86_64')
url="http://trilinos.org"
license=('LGPL3')
depends=('lapack' 'openmpi' 'python2' 'boost' 'netcdf' 'libmatio' 'libx11')                                                                  
makedepends=('python2-numpy' 'swig' 'gcc-fortran' 'perl' 'blas' 'cmake'                                                                      
             'gtest' 'doxygen')
checkdepends=('cmake')
conflicts=('trilinos')
provides=('trilinos=${pkgver}')
source=("https://github.com/trilinos/Trilinos/archive/trilinos-release-$_pkgver.tar.gz")                                                     
sha256sums=('5474c5329c6309224a7e1726cf6f0d855025b2042959e4e2be2748bd6bb49e18')                                                              

prepare() {
    # https://github.com/trilinos/Trilinos/issues/862#issuecomment-365852261                                                                 
    find Trilinos-trilinos-release-"$_pkgver" -name "*.py" -exec \
        sed -i '1s#\(/usr/bin/env \|/usr/bin/\)python[2-3]*#\1python2#' {} \;                                                                
}

build() {
    cd Trilinos-trilinos-release-"$_pkgver"
    mkdir -p build
    cd build

    cmake .. -DTrilinos_ENABLE_ALL_OPTIONAL_PACKAGES:BOOL=ON \
             -DTrilinos_ENABLE_ALL_PACKAGES:BOOL=ON \
             -DTrilinos_ENABLE_COMPLEX:BOOL=ON \
             -DTrilinos_ENABLE_Gtest:BOOL=ON \
             -DTrilinos_ENABLE_TESTS=ON \
             -DTPL_ENABLE_gtest:BOOL=ON \
             -DTPL_ENABLE_MPI:BOOL=ON \
             -DPYTHON_EXECUTABLE:PATH=/usr/bin/python2 \
             -DCMAKE_INSTALL_PREFIX:PATH=/usr \
             -DBUILD_SHARED_LIBS:BOOL=ON
    make VERBOSE=1
}

check() {
    cd Trilinos-trilinos-release-"$_pkgver"/build
    ctest
}

package() {
    cd Trilinos-trilinos-release-"$_pkgver"/build
    make DESTDIR="$pkgdir" install
}

Offline

#6 2019-02-17 13:33:28

promach
Member
Registered: 2016-05-18
Posts: 96

Re: [REQUEST] Xyce circuit simulator

@jamespharvey20

g++: fatal error: Killed signal terminated program cc1plus

I used your trilinous-complex PKGBUILD without any modification, but I still have the above error.

Did you face similar error during compilation ?

Offline

#7 2019-02-17 17:38:39

loqs
Member
Registered: 2014-03-06
Posts: 17,195

Re: [REQUEST] Xyce circuit simulator

promach wrote:

@jamespharvey20

g++: fatal error: Killed signal terminated program cc1plus

I used your trilinous-complex PKGBUILD without any modification, but I still have the above error.

You have not mentioned having such an error before in this thread.  What is the full output from makepkg?
If it is too large for a code block please post it to a pastebin and link that.  It failed here with out of memory at 77% when 8 parallel jobs had used 15G.

Offline

#8 2019-02-17 23:14:05

jamespharvey20
Member
Registered: 2015-06-09
Posts: 129

Re: [REQUEST] Xyce circuit simulator

If your error winds up being out of memory, you could reduce the number of parallel jobs allowed, if you've set "MAKEFLAGS=<something>" in your /etc/makepkg.conf at least.  In the trilinos-complex PKGBUILD, you could change "make VERBOSE=1" to "make VERBOSE=1 -j<something else>" perhaps even 1.  If you never edited your /etc/makepkg.conf to set MAKEFLAGS to allow parallel jobs, if you're running out of memory, then you'd just need more.

You could temporarily/permanently create more swap space too.

Also, in your xyce PKGBUILD, you don't want to specify the "-j$(nproc)" options.  That's something a user gets to set in /etc/makepkg.conf.  A PKGBUILD shouldn't force that on a user.  The only thing it should do with "-j" is to specify "-j1" to disable parallel builds, if that specific package has problems being built in parallel, which is pretty rare.

Offline

#9 2019-02-19 01:17:40

promach
Member
Registered: 2016-05-18
Posts: 96

Re: [REQUEST] Xyce circuit simulator

@jamespharvey20

When I use "-j1" , see the following error. Why ?

# Contributor: Alad Wenter <alad@archlinux.org>
# Contributor: Jingbei Li <i@jingbei.li>
# Contributor: Simon Pintarelli <simon.pintarelli@gmail.com>
# Contributor: Feng Wang <wanng.fenng@gmail.com>
pkgname=trilinos-complex
pkgver=12.12.1
_pkgver=${pkgver//./-}
pkgrel=4
pkgdesc="algorithms for the solution of large-scale scientific problems"                                                                     
arch=('x86_64')
url="http://trilinos.org"
license=('LGPL3')
depends=('lapack' 'openmpi' 'python2' 'boost' 'netcdf' 'libmatio' 'libx11')                                                                  
makedepends=('python2-numpy' 'swig' 'gcc-fortran' 'perl' 'blas' 'cmake'                                                                      
             'gtest' 'doxygen')
checkdepends=('cmake')
conflicts=('trilinos')
provides=('trilinos=${pkgver}')
source=("https://github.com/trilinos/Trilinos/archive/trilinos-release-$_pkgver.tar.gz")                                                     
sha256sums=('5474c5329c6309224a7e1726cf6f0d855025b2042959e4e2be2748bd6bb49e18')                                                              

prepare() {
    # https://github.com/trilinos/Trilinos/issues/862#issuecomment-365852261                                                                 
    find Trilinos-trilinos-release-"$_pkgver" -name "*.py" -exec \
        sed -i '1s#\(/usr/bin/env \|/usr/bin/\)python[2-3]*#\1python2#' {} \;                                                                
}

build() {
    cd Trilinos-trilinos-release-"$_pkgver"
    mkdir -p build
    cd build

    cmake .. -DTrilinos_ENABLE_ALL_OPTIONAL_PACKAGES:BOOL=ON \
             -DTrilinos_ENABLE_ALL_PACKAGES:BOOL=ON \
             -DTrilinos_ENABLE_COMPLEX:BOOL=ON \
             -DTrilinos_ENABLE_Gtest:BOOL=ON \
             -DTrilinos_ENABLE_TESTS=ON \
             -DTPL_ENABLE_gtest:BOOL=ON \
             -DTPL_ENABLE_MPI:BOOL=ON \
             -DPYTHON_EXECUTABLE:PATH=/usr/bin/python2 \
             -DCMAKE_INSTALL_PREFIX:PATH=/usr \
             -DBUILD_SHARED_LIBS:BOOL=ON
    make -j1 VERBOSE=1
}

check() {
    cd Trilinos-trilinos-release-"$_pkgver"/build
    ctest
}

package() {
    cd Trilinos-trilinos-release-"$_pkgver"/build
    make DESTDIR="$pkgdir" install
}
[phung@archlinux trilinos]$ makepkg -s
==> Making package: trilinos-complex 12.12.1-4 (Mon 18 Feb 2019 11:41:15 PM +08)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
  -> Found trilinos-release-12-12-1.tar.gz
==> Validating source files with sha256sums...
    trilinos-release-12-12-1.tar.gz ... Passed
==> Extracting sources...
  -> Extracting trilinos-release-12-12-1.tar.gz with bsdtar
==> Starting prepare()...
==> Removing existing $pkgdir/ directory...
==> Starting build()...

Configuring Trilinos build directory

-- PROJECT_SOURCE_DIR='/home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/src/Trilinos-trilinos-release-12-12-1'
-- PROJECT_BINARY_DIR='/home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/src/Trilinos-trilinos-release-12-12-1/build'
-- Trilinos_TRIBITS_DIR='/home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/src/Trilinos-trilinos-release-12-12-1/cmake/tribits'
-- TriBITS_VERSION_STRING='0.9 (Dev)'
-- CMAKE_VERSION='3.13.4'
-- CMAKE_GENERATOR='Unix Makefiles'
-- Reading in configuration options from /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/src/Trilinos-trilinos-release-12-12-1/cmake/StdDevEnvs.cmake ...
-- Trilinos_USE_BUILD_ENV=''
-- CMAKE_HOST_SYSTEM_NAME='Linux'
-- Trilinos_HOSTNAME='archlinux'
-- Found PythonInterp: /usr/bin/python2 (found suitable version "2.7.15", minimum required is "2.6") 
-- PYTHON_EXECUTABLE='/usr/bin/python2'

Setting up major user options ...

-- Setting Trilinos_ENABLE_EXAMPLES=ON because Trilinos_ENABLE_TESTS=ON
-- Setting Trilinos_ENABLE_TriKota=OFF because '/home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/src/Trilinos-trilinos-release-12-12-1/packages/TriKota/Dakota' does not exist!

NOTE: Skipping generation of TrilinosRepoVersion.txt because project source is not a git repo!

Reading list of native packages from /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/src/Trilinos-trilinos-release-12-12-1/PackagesList.cmake

-- Trilinos_NUM_PACKAGES='60'

Reading list of native TPLs from /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/src/Trilinos-trilinos-release-12-12-1/TPLsList.cmake

-- Trilinos_NUM_TPLS='102'

Processing Project, Repository, and Package dependency files and building internal dependencies graph ...

-- Trilinos_NUM_SE_PACKAGES='153'
-- Tentatively enabling TPL 'Pthread'
-- Tentatively enabling TPL 'DLlib'

Explicitly enabled packages on input (by user):  Gtest 1

Explicitly enabled SE packages on input (by user):  Gtest 1

Explicitly disabled packages on input (by user or by default):  Claps Trios TriKota NewPackage MeshingGenie 5

Explicitly disabled SE packages on input (by user or by default):  KokkosExample TeuchosParser Claps ShyLUHTS ShyLUTacho ShyLUBDDC ShyLUBasker ShyLUFastILU Trioscommsplitter Triossupport Triosnnti Triosnssi Triosprograms Triosexamples Triostests Triosnetcdf-service Trios TriKota STKClassic STKExp NewPackage MeshingGenie 22

Explicitly enabled TPLs on input (by user):  Pthread MPI gtest DLlib 4

Explicitly disabled TPLs on input (by user or by default):  0

Disabling all packages that have a required dependency on disabled TPLs and optional package TPL support based on TPL_ENABLE_<TPL>=OFF ...


Disabling subpackages for hard disables of parent packages due to Trilinos_ENABLE_<PARENT_PACKAGE>=OFF ...


Disabling forward required SE packages and optional intra-package support that have a dependancy on disabled SE packages Trilinos_ENABLE_<TRIBITS_PACKAGE>=OFF ...


Enabling subpackages for hard enables of parent packages due to Trilinos_ENABLE_<PARENT_PACKAGE>=ON ...


Enabling all SE packages that are not currently disabled because of Trilinos_ENABLE_ALL_PACKAGES=ON (Trilinos_ENABLE_SECONDARY_TESTED_CODE=ON) ...

-- Setting Trilinos_ENABLE_ThreadPool=ON
-- Setting Trilinos_ENABLE_KokkosCore=ON
-- Setting Trilinos_ENABLE_KokkosContainers=ON
-- Setting Trilinos_ENABLE_KokkosAlgorithms=ON
-- Setting Trilinos_ENABLE_Kokkos=ON
-- Setting Trilinos_ENABLE_TeuchosCore=ON
-- Setting Trilinos_ENABLE_TeuchosParameterList=ON
-- Setting Trilinos_ENABLE_TeuchosComm=ON
-- Setting Trilinos_ENABLE_TeuchosNumerics=ON
-- Setting Trilinos_ENABLE_TeuchosRemainder=ON
-- Setting Trilinos_ENABLE_TeuchosKokkosCompat=ON
-- Setting Trilinos_ENABLE_TeuchosKokkosComm=ON
-- Setting Trilinos_ENABLE_Teuchos=ON
-- Setting Trilinos_ENABLE_KokkosKernels=ON
-- Setting Trilinos_ENABLE_RTOp=ON
-- Setting Trilinos_ENABLE_Sacado=ON
-- Setting Trilinos_ENABLE_MiniTensor=ON
-- Setting Trilinos_ENABLE_Epetra=ON
-- Setting Trilinos_ENABLE_Zoltan=ON
-- Setting Trilinos_ENABLE_Shards=ON
-- Setting Trilinos_ENABLE_GlobiPack=ON
-- Setting Trilinos_ENABLE_Triutils=ON
-- Setting Trilinos_ENABLE_TpetraClassic=ON
-- Setting Trilinos_ENABLE_TpetraTSQR=ON
-- Setting Trilinos_ENABLE_TpetraCore=ON
-- Setting Trilinos_ENABLE_Tpetra=ON
-- Setting Trilinos_ENABLE_TrilinosSS=ON
-- Setting Trilinos_ENABLE_EpetraExt=ON
-- Setting Trilinos_ENABLE_Domi=ON
-- Setting Trilinos_ENABLE_ThyraCore=ON
-- Setting Trilinos_ENABLE_ThyraEpetraAdapters=ON
-- Setting Trilinos_ENABLE_ThyraEpetraExtAdapters=ON
-- Setting Trilinos_ENABLE_ThyraTpetraAdapters=ON
-- Setting Trilinos_ENABLE_Thyra=ON
-- Setting Trilinos_ENABLE_Xpetra=ON
-- Setting Trilinos_ENABLE_OptiPack=ON
-- Setting Trilinos_ENABLE_Isorropia=ON
-- Setting Trilinos_ENABLE_Pliris=ON
-- Setting Trilinos_ENABLE_AztecOO=ON
-- Setting Trilinos_ENABLE_Galeri=ON
-- Setting Trilinos_ENABLE_Amesos=ON
-- Setting Trilinos_ENABLE_Pamgen=ON
-- Setting Trilinos_ENABLE_Zoltan2=ON
-- Setting Trilinos_ENABLE_Ifpack=ON
-- Setting Trilinos_ENABLE_ML=ON
-- Setting Trilinos_ENABLE_Belos=ON
-- Setting Trilinos_ENABLE_ShyLUCore=ON
-- Setting Trilinos_ENABLE_ShyLU=ON
-- Setting Trilinos_ENABLE_Amesos2=ON
-- Setting Trilinos_ENABLE_SEACASExodus=ON
-- Setting Trilinos_ENABLE_SEACASExodus_for=ON
-- Setting Trilinos_ENABLE_SEACASExoIIv2for32=ON
-- Setting Trilinos_ENABLE_SEACASNemesis=ON
-- Setting Trilinos_ENABLE_SEACASIoss=ON
-- Setting Trilinos_ENABLE_SEACASChaco=ON
-- Setting Trilinos_ENABLE_SEACASAprepro_lib=ON
-- Setting Trilinos_ENABLE_SEACASSupes=ON
-- Setting Trilinos_ENABLE_SEACASSuplib=ON
-- Setting Trilinos_ENABLE_SEACASSuplibC=ON
-- Setting Trilinos_ENABLE_SEACASSuplibCpp=ON
-- Setting Trilinos_ENABLE_SEACASSVDI=ON
-- Setting Trilinos_ENABLE_SEACASPLT=ON
-- Setting Trilinos_ENABLE_SEACASAlgebra=ON
-- Setting Trilinos_ENABLE_SEACASAprepro=ON
-- Setting Trilinos_ENABLE_SEACASBlot=ON
-- Setting Trilinos_ENABLE_SEACASConjoin=ON
-- Setting Trilinos_ENABLE_SEACASEjoin=ON
-- Setting Trilinos_ENABLE_SEACASEpu=ON
-- Setting Trilinos_ENABLE_SEACASExo2mat=ON
-- Setting Trilinos_ENABLE_SEACASExodiff=ON
-- Setting Trilinos_ENABLE_SEACASExomatlab=ON
-- Setting Trilinos_ENABLE_SEACASExotxt=ON
-- Setting Trilinos_ENABLE_SEACASExo_format=ON
-- Setting Trilinos_ENABLE_SEACASEx1ex2v2=ON
-- Setting Trilinos_ENABLE_SEACASFastq=ON
-- Setting Trilinos_ENABLE_SEACASGjoin=ON
-- Setting Trilinos_ENABLE_SEACASGen3D=ON
-- Setting Trilinos_ENABLE_SEACASGenshell=ON
-- Setting Trilinos_ENABLE_SEACASGrepos=ON
-- Setting Trilinos_ENABLE_SEACASGrope=ON
-- Setting Trilinos_ENABLE_SEACASMapvarlib=ON
-- Setting Trilinos_ENABLE_SEACASMapvar=ON
-- Setting Trilinos_ENABLE_SEACASMapvar-kd=ON
-- Setting Trilinos_ENABLE_SEACASMat2exo=ON
-- Setting Trilinos_ENABLE_SEACASNemslice=ON
-- Setting Trilinos_ENABLE_SEACASNemspread=ON
-- Setting Trilinos_ENABLE_SEACASNumbers=ON
-- Setting Trilinos_ENABLE_SEACASTxtexo=ON
-- Setting Trilinos_ENABLE_SEACASEx2ex1v2=ON
-- Setting Trilinos_ENABLE_SEACAS=ON
-- Setting Trilinos_ENABLE_Komplex=ON
-- Setting Trilinos_ENABLE_Anasazi=ON
-- Setting Trilinos_ENABLE_Ifpack2=ON
-- Setting Trilinos_ENABLE_Stratimikos=ON
-- Setting Trilinos_ENABLE_FEI=ON
-- Setting Trilinos_ENABLE_Teko=ON
-- Setting Trilinos_ENABLE_Intrepid=ON
-- Setting Trilinos_ENABLE_Intrepid2=ON
-- Setting Trilinos_ENABLE_STKUtil=ON
-- Setting Trilinos_ENABLE_STKSimd=ON
-- Setting Trilinos_ENABLE_STKTopology=ON
-- Setting Trilinos_ENABLE_STKMesh=ON
-- Setting Trilinos_ENABLE_STKIO=ON
-- Setting Trilinos_ENABLE_STKUnit_test_utils=ON
-- Setting Trilinos_ENABLE_STKSearch=ON
-- Setting Trilinos_ENABLE_STKSearchUtil=ON
-- Setting Trilinos_ENABLE_STKTransfer=ON
-- Setting Trilinos_ENABLE_STKUnit_tests=ON
-- Setting Trilinos_ENABLE_STKDoc_tests=ON
-- Setting Trilinos_ENABLE_STKExprEval=ON
-- Setting Trilinos_ENABLE_STK=ON
-- Setting Trilinos_ENABLE_Phalanx=ON
-- Setting Trilinos_ENABLE_NOX=ON
-- Setting Trilinos_ENABLE_Moertel=ON
-- Setting Trilinos_ENABLE_MueLu=ON
-- Setting Trilinos_ENABLE_Rythmos=ON
-- Setting Trilinos_ENABLE_Tempus=ON
-- Setting Trilinos_ENABLE_Stokhos=ON
-- Setting Trilinos_ENABLE_ROL=ON
-- Setting Trilinos_ENABLE_Piro=ON
-- Setting Trilinos_ENABLE_PanzerCore=ON
-- Setting Trilinos_ENABLE_PanzerDofMgr=ON
-- Setting Trilinos_ENABLE_PanzerDiscFE=ON
-- Setting Trilinos_ENABLE_PanzerAdaptersSTK=ON
-- Setting Trilinos_ENABLE_Panzer=ON
-- Setting Trilinos_ENABLE_PyTrilinos=ON
-- Setting Trilinos_ENABLE_TrilinosCouplings=ON
-- Setting Trilinos_ENABLE_PikeBlackBox=ON
-- Setting Trilinos_ENABLE_PikeImplicit=ON
-- Setting Trilinos_ENABLE_Pike=ON

Enabling all tests and/or examples that have not been explicitly disabled because Trilinos_ENABLE_[TESTS,EXAMPLES]=ON ...

-- Setting Gtest_ENABLE_TESTS=ON
-- Setting Gtest_ENABLE_EXAMPLES=ON
-- Setting ThreadPool_ENABLE_TESTS=ON
-- Setting ThreadPool_ENABLE_EXAMPLES=ON
-- Setting KokkosCore_ENABLE_TESTS=ON
-- Setting KokkosCore_ENABLE_EXAMPLES=ON
-- Setting KokkosContainers_ENABLE_TESTS=ON
-- Setting KokkosContainers_ENABLE_EXAMPLES=ON
-- Setting KokkosAlgorithms_ENABLE_TESTS=ON
-- Setting KokkosAlgorithms_ENABLE_EXAMPLES=ON
-- Setting Kokkos_ENABLE_TESTS=ON
-- Setting Kokkos_ENABLE_EXAMPLES=ON
-- Setting TeuchosCore_ENABLE_TESTS=ON
-- Setting TeuchosCore_ENABLE_EXAMPLES=ON
-- Setting TeuchosParameterList_ENABLE_TESTS=ON
-- Setting TeuchosParameterList_ENABLE_EXAMPLES=ON
-- Setting TeuchosComm_ENABLE_TESTS=ON
-- Setting TeuchosComm_ENABLE_EXAMPLES=ON
-- Setting TeuchosNumerics_ENABLE_TESTS=ON
-- Setting TeuchosNumerics_ENABLE_EXAMPLES=ON
-- Setting TeuchosRemainder_ENABLE_TESTS=ON
-- Setting TeuchosRemainder_ENABLE_EXAMPLES=ON
-- Setting TeuchosKokkosCompat_ENABLE_TESTS=ON
-- Setting TeuchosKokkosCompat_ENABLE_EXAMPLES=ON
-- Setting TeuchosKokkosComm_ENABLE_TESTS=ON
-- Setting TeuchosKokkosComm_ENABLE_EXAMPLES=ON
-- Setting Teuchos_ENABLE_TESTS=ON
-- Setting Teuchos_ENABLE_EXAMPLES=ON
-- Setting KokkosKernels_ENABLE_TESTS=ON
-- Setting KokkosKernels_ENABLE_EXAMPLES=ON
-- Setting RTOp_ENABLE_TESTS=ON
-- Setting RTOp_ENABLE_EXAMPLES=ON
-- Setting Sacado_ENABLE_TESTS=ON
-- Setting Sacado_ENABLE_EXAMPLES=ON
-- Setting MiniTensor_ENABLE_TESTS=ON
-- Setting MiniTensor_ENABLE_EXAMPLES=ON
-- Setting Epetra_ENABLE_TESTS=ON
-- Setting Epetra_ENABLE_EXAMPLES=ON
-- Setting Zoltan_ENABLE_TESTS=ON
-- Setting Zoltan_ENABLE_EXAMPLES=ON
-- Setting Shards_ENABLE_TESTS=ON
-- Setting Shards_ENABLE_EXAMPLES=ON
-- Setting GlobiPack_ENABLE_TESTS=ON
-- Setting GlobiPack_ENABLE_EXAMPLES=ON
-- Setting Triutils_ENABLE_TESTS=ON
-- Setting Triutils_ENABLE_EXAMPLES=ON
-- Setting TpetraClassic_ENABLE_TESTS=ON
-- Setting TpetraClassic_ENABLE_EXAMPLES=ON
-- Setting TpetraTSQR_ENABLE_TESTS=ON
-- Setting TpetraTSQR_ENABLE_EXAMPLES=ON
-- Setting TpetraCore_ENABLE_TESTS=ON
-- Setting TpetraCore_ENABLE_EXAMPLES=ON
-- Setting Tpetra_ENABLE_TESTS=ON
-- Setting Tpetra_ENABLE_EXAMPLES=ON
-- Setting TrilinosSS_ENABLE_TESTS=ON
-- Setting TrilinosSS_ENABLE_EXAMPLES=ON
-- Setting EpetraExt_ENABLE_TESTS=ON
-- Setting EpetraExt_ENABLE_EXAMPLES=ON
-- Setting Domi_ENABLE_TESTS=ON
-- Setting Domi_ENABLE_EXAMPLES=ON
-- Setting ThyraCore_ENABLE_TESTS=ON
-- Setting ThyraCore_ENABLE_EXAMPLES=ON
-- Setting ThyraEpetraAdapters_ENABLE_TESTS=ON
-- Setting ThyraEpetraAdapters_ENABLE_EXAMPLES=ON
-- Setting ThyraEpetraExtAdapters_ENABLE_TESTS=ON
-- Setting ThyraEpetraExtAdapters_ENABLE_EXAMPLES=ON
-- Setting ThyraTpetraAdapters_ENABLE_TESTS=ON
-- Setting ThyraTpetraAdapters_ENABLE_EXAMPLES=ON
-- Setting Thyra_ENABLE_TESTS=ON
-- Setting Thyra_ENABLE_EXAMPLES=ON
-- Setting Xpetra_ENABLE_TESTS=ON
-- Setting Xpetra_ENABLE_EXAMPLES=ON
-- Setting OptiPack_ENABLE_TESTS=ON
-- Setting OptiPack_ENABLE_EXAMPLES=ON
-- Setting Isorropia_ENABLE_TESTS=ON
-- Setting Isorropia_ENABLE_EXAMPLES=ON
-- Setting Pliris_ENABLE_TESTS=ON
-- Setting Pliris_ENABLE_EXAMPLES=ON
-- Setting AztecOO_ENABLE_TESTS=ON
-- Setting AztecOO_ENABLE_EXAMPLES=ON
-- Setting Galeri_ENABLE_TESTS=ON
-- Setting Galeri_ENABLE_EXAMPLES=ON
-- Setting Amesos_ENABLE_TESTS=ON
-- Setting Amesos_ENABLE_EXAMPLES=ON
-- Setting Pamgen_ENABLE_TESTS=ON
-- Setting Pamgen_ENABLE_EXAMPLES=ON
-- Setting Zoltan2_ENABLE_TESTS=ON
-- Setting Zoltan2_ENABLE_EXAMPLES=ON
-- Setting Ifpack_ENABLE_TESTS=ON
-- Setting Ifpack_ENABLE_EXAMPLES=ON
-- Setting ML_ENABLE_TESTS=ON
-- Setting ML_ENABLE_EXAMPLES=ON
-- Setting Belos_ENABLE_TESTS=ON
-- Setting Belos_ENABLE_EXAMPLES=ON
-- Setting ShyLUCore_ENABLE_TESTS=ON
-- Setting ShyLUCore_ENABLE_EXAMPLES=ON
-- Setting ShyLU_ENABLE_TESTS=ON
-- Setting ShyLU_ENABLE_EXAMPLES=ON
-- Setting Amesos2_ENABLE_TESTS=ON
-- Setting Amesos2_ENABLE_EXAMPLES=ON
-- Setting SEACASExodus_ENABLE_TESTS=ON
-- Setting SEACASExodus_ENABLE_EXAMPLES=ON
-- Setting SEACASExodus_for_ENABLE_TESTS=ON
-- Setting SEACASExodus_for_ENABLE_EXAMPLES=ON
-- Setting SEACASExoIIv2for32_ENABLE_TESTS=ON
-- Setting SEACASExoIIv2for32_ENABLE_EXAMPLES=ON
-- Setting SEACASNemesis_ENABLE_TESTS=ON
-- Setting SEACASNemesis_ENABLE_EXAMPLES=ON
-- Setting SEACASIoss_ENABLE_TESTS=ON
-- Setting SEACASIoss_ENABLE_EXAMPLES=ON
-- Setting SEACASChaco_ENABLE_TESTS=ON
-- Setting SEACASChaco_ENABLE_EXAMPLES=ON
-- Setting SEACASAprepro_lib_ENABLE_TESTS=ON
-- Setting SEACASAprepro_lib_ENABLE_EXAMPLES=ON
-- Setting SEACASSupes_ENABLE_TESTS=ON
-- Setting SEACASSupes_ENABLE_EXAMPLES=ON
-- Setting SEACASSuplib_ENABLE_TESTS=ON
-- Setting SEACASSuplib_ENABLE_EXAMPLES=ON
-- Setting SEACASSuplibC_ENABLE_TESTS=ON
-- Setting SEACASSuplibC_ENABLE_EXAMPLES=ON
-- Setting SEACASSuplibCpp_ENABLE_TESTS=ON
-- Setting SEACASSuplibCpp_ENABLE_EXAMPLES=ON
-- Setting SEACASSVDI_ENABLE_TESTS=ON
-- Setting SEACASSVDI_ENABLE_EXAMPLES=ON
-- Setting SEACASPLT_ENABLE_TESTS=ON
-- Setting SEACASPLT_ENABLE_EXAMPLES=ON
-- Setting SEACASAlgebra_ENABLE_TESTS=ON
-- Setting SEACASAlgebra_ENABLE_EXAMPLES=ON
-- Setting SEACASAprepro_ENABLE_TESTS=ON
-- Setting SEACASAprepro_ENABLE_EXAMPLES=ON
-- Setting SEACASBlot_ENABLE_TESTS=ON
-- Setting SEACASBlot_ENABLE_EXAMPLES=ON
-- Setting SEACASConjoin_ENABLE_TESTS=ON
-- Setting SEACASConjoin_ENABLE_EXAMPLES=ON
-- Setting SEACASEjoin_ENABLE_TESTS=ON
-- Setting SEACASEjoin_ENABLE_EXAMPLES=ON
-- Setting SEACASEpu_ENABLE_TESTS=ON
-- Setting SEACASEpu_ENABLE_EXAMPLES=ON
-- Setting SEACASExo2mat_ENABLE_TESTS=ON
-- Setting SEACASExo2mat_ENABLE_EXAMPLES=ON
-- Setting SEACASExodiff_ENABLE_TESTS=ON
-- Setting SEACASExodiff_ENABLE_EXAMPLES=ON
-- Setting SEACASExomatlab_ENABLE_TESTS=ON
-- Setting SEACASExomatlab_ENABLE_EXAMPLES=ON
-- Setting SEACASExotxt_ENABLE_TESTS=ON
-- Setting SEACASExotxt_ENABLE_EXAMPLES=ON
-- Setting SEACASExo_format_ENABLE_TESTS=ON
-- Setting SEACASExo_format_ENABLE_EXAMPLES=ON
-- Setting SEACASEx1ex2v2_ENABLE_TESTS=ON
-- Setting SEACASEx1ex2v2_ENABLE_EXAMPLES=ON
-- Setting SEACASFastq_ENABLE_TESTS=ON
-- Setting SEACASFastq_ENABLE_EXAMPLES=ON
-- Setting SEACASGjoin_ENABLE_TESTS=ON
-- Setting SEACASGjoin_ENABLE_EXAMPLES=ON
-- Setting SEACASGen3D_ENABLE_TESTS=ON
-- Setting SEACASGen3D_ENABLE_EXAMPLES=ON
-- Setting SEACASGenshell_ENABLE_TESTS=ON
-- Setting SEACASGenshell_ENABLE_EXAMPLES=ON
-- Setting SEACASGrepos_ENABLE_TESTS=ON
-- Setting SEACASGrepos_ENABLE_EXAMPLES=ON
-- Setting SEACASGrope_ENABLE_TESTS=ON
-- Setting SEACASGrope_ENABLE_EXAMPLES=ON
-- Setting SEACASMapvarlib_ENABLE_TESTS=ON
-- Setting SEACASMapvarlib_ENABLE_EXAMPLES=ON
-- Setting SEACASMapvar_ENABLE_TESTS=ON
-- Setting SEACASMapvar_ENABLE_EXAMPLES=ON
-- Setting SEACASMapvar-kd_ENABLE_TESTS=ON
-- Setting SEACASMapvar-kd_ENABLE_EXAMPLES=ON
-- Setting SEACASMat2exo_ENABLE_TESTS=ON
-- Setting SEACASMat2exo_ENABLE_EXAMPLES=ON
-- Setting SEACASNemslice_ENABLE_TESTS=ON
-- Setting SEACASNemslice_ENABLE_EXAMPLES=ON
-- Setting SEACASNemspread_ENABLE_TESTS=ON
-- Setting SEACASNemspread_ENABLE_EXAMPLES=ON
-- Setting SEACASNumbers_ENABLE_TESTS=ON
-- Setting SEACASNumbers_ENABLE_EXAMPLES=ON
-- Setting SEACASTxtexo_ENABLE_TESTS=ON
-- Setting SEACASTxtexo_ENABLE_EXAMPLES=ON
-- Setting SEACASEx2ex1v2_ENABLE_TESTS=ON
-- Setting SEACASEx2ex1v2_ENABLE_EXAMPLES=ON
-- Setting SEACAS_ENABLE_TESTS=ON
-- Setting SEACAS_ENABLE_EXAMPLES=ON
-- Setting Komplex_ENABLE_TESTS=ON
-- Setting Komplex_ENABLE_EXAMPLES=ON
-- Setting Anasazi_ENABLE_TESTS=ON
-- Setting Anasazi_ENABLE_EXAMPLES=ON
-- Setting Ifpack2_ENABLE_TESTS=ON
-- Setting Ifpack2_ENABLE_EXAMPLES=ON
-- Setting Stratimikos_ENABLE_TESTS=ON
-- Setting Stratimikos_ENABLE_EXAMPLES=ON
-- Setting FEI_ENABLE_TESTS=ON
-- Setting FEI_ENABLE_EXAMPLES=ON
-- Setting Teko_ENABLE_TESTS=ON
-- Setting Teko_ENABLE_EXAMPLES=ON
-- Setting Intrepid_ENABLE_TESTS=ON
-- Setting Intrepid_ENABLE_EXAMPLES=ON
-- Setting Intrepid2_ENABLE_TESTS=ON
-- Setting Intrepid2_ENABLE_EXAMPLES=ON
-- Setting STKUtil_ENABLE_TESTS=ON
-- Setting STKUtil_ENABLE_EXAMPLES=ON
-- Setting STKSimd_ENABLE_TESTS=ON
-- Setting STKSimd_ENABLE_EXAMPLES=ON
-- Setting STKTopology_ENABLE_TESTS=ON
-- Setting STKTopology_ENABLE_EXAMPLES=ON
-- Setting STKMesh_ENABLE_TESTS=ON
-- Setting STKMesh_ENABLE_EXAMPLES=ON
-- Setting STKIO_ENABLE_TESTS=ON
-- Setting STKIO_ENABLE_EXAMPLES=ON
-- Setting STKUnit_test_utils_ENABLE_TESTS=ON
-- Setting STKUnit_test_utils_ENABLE_EXAMPLES=ON
-- Setting STKSearch_ENABLE_TESTS=ON
-- Setting STKSearch_ENABLE_EXAMPLES=ON
-- Setting STKSearchUtil_ENABLE_TESTS=ON
-- Setting STKSearchUtil_ENABLE_EXAMPLES=ON
-- Setting STKTransfer_ENABLE_TESTS=ON
-- Setting STKTransfer_ENABLE_EXAMPLES=ON
-- Setting STKUnit_tests_ENABLE_TESTS=ON
-- Setting STKUnit_tests_ENABLE_EXAMPLES=ON
-- Setting STKDoc_tests_ENABLE_TESTS=ON
-- Setting STKDoc_tests_ENABLE_EXAMPLES=ON
-- Setting STKExprEval_ENABLE_TESTS=ON
-- Setting STKExprEval_ENABLE_EXAMPLES=ON
-- Setting STK_ENABLE_TESTS=ON
-- Setting STK_ENABLE_EXAMPLES=ON
-- Setting Phalanx_ENABLE_TESTS=ON
-- Setting Phalanx_ENABLE_EXAMPLES=ON
-- Setting NOX_ENABLE_TESTS=ON
-- Setting NOX_ENABLE_EXAMPLES=ON
-- Setting Moertel_ENABLE_TESTS=ON
-- Setting Moertel_ENABLE_EXAMPLES=ON
-- Setting MueLu_ENABLE_TESTS=ON
-- Setting MueLu_ENABLE_EXAMPLES=ON
-- Setting Rythmos_ENABLE_TESTS=ON
-- Setting Rythmos_ENABLE_EXAMPLES=ON
-- Setting Tempus_ENABLE_TESTS=ON
-- Setting Tempus_ENABLE_EXAMPLES=ON
-- Setting Stokhos_ENABLE_TESTS=ON
-- Setting Stokhos_ENABLE_EXAMPLES=ON
-- Setting ROL_ENABLE_TESTS=ON
-- Setting ROL_ENABLE_EXAMPLES=ON
-- Setting Piro_ENABLE_TESTS=ON
-- Setting Piro_ENABLE_EXAMPLES=ON
-- Setting PanzerCore_ENABLE_TESTS=ON
-- Setting PanzerCore_ENABLE_EXAMPLES=ON
-- Setting PanzerDofMgr_ENABLE_TESTS=ON
-- Setting PanzerDofMgr_ENABLE_EXAMPLES=ON
-- Setting PanzerDiscFE_ENABLE_TESTS=ON
-- Setting PanzerDiscFE_ENABLE_EXAMPLES=ON
-- Setting PanzerAdaptersSTK_ENABLE_TESTS=ON
-- Setting PanzerAdaptersSTK_ENABLE_EXAMPLES=ON
-- Setting Panzer_ENABLE_TESTS=ON
-- Setting Panzer_ENABLE_EXAMPLES=ON
-- Setting PyTrilinos_ENABLE_TESTS=ON
-- Setting PyTrilinos_ENABLE_EXAMPLES=ON
-- Setting TrilinosCouplings_ENABLE_TESTS=ON
-- Setting TrilinosCouplings_ENABLE_EXAMPLES=ON
-- Setting PikeBlackBox_ENABLE_TESTS=ON
-- Setting PikeBlackBox_ENABLE_EXAMPLES=ON
-- Setting PikeImplicit_ENABLE_TESTS=ON
-- Setting PikeImplicit_ENABLE_EXAMPLES=ON
-- Setting Pike_ENABLE_TESTS=ON
-- Setting Pike_ENABLE_EXAMPLES=ON

Enabling all required (and optional since Trilinos_ENABLE_ALL_OPTIONAL_PACKAGES=ON) upstream SE packages for current set of enabled packages (Trilinos_ENABLE_SECONDARY_TESTED_CODE=ON) ...


Enabling all optional intra-package enables <TRIBITS_PACKAGE>_ENABLE_<DEPPACKAGE> that are not currently disabled if both sets of packages are enabled ...

-- Setting Kokkos_ENABLE_KokkosContainers=ON since Trilinos_ENABLE_Kokkos=ON AND Trilinos_ENABLE_KokkosContainers=ON
-- Setting Kokkos_ENABLE_KokkosAlgorithms=ON since Trilinos_ENABLE_Kokkos=ON AND Trilinos_ENABLE_KokkosAlgorithms=ON
-- Setting TeuchosCore_ENABLE_KokkosCore=ON since Trilinos_ENABLE_TeuchosCore=ON AND Trilinos_ENABLE_KokkosCore=ON
-- Setting Teuchos_ENABLE_TeuchosKokkosCompat=ON since Trilinos_ENABLE_Teuchos=ON AND Trilinos_ENABLE_TeuchosKokkosCompat=ON
-- Setting Teuchos_ENABLE_TeuchosKokkosComm=ON since Trilinos_ENABLE_Teuchos=ON AND Trilinos_ENABLE_TeuchosKokkosComm=ON
-- Setting Sacado_ENABLE_Teuchos=ON since Trilinos_ENABLE_Sacado=ON AND Trilinos_ENABLE_Teuchos=ON
-- Setting Sacado_ENABLE_KokkosCore=ON since Trilinos_ENABLE_Sacado=ON AND Trilinos_ENABLE_KokkosCore=ON
-- Setting Sacado_ENABLE_TeuchosKokkosComm=ON since Trilinos_ENABLE_Sacado=ON AND Trilinos_ENABLE_TeuchosKokkosComm=ON
-- Setting Sacado_ENABLE_TeuchosCore=ON since Trilinos_ENABLE_Sacado=ON AND Trilinos_ENABLE_TeuchosCore=ON
-- Setting Sacado_ENABLE_KokkosContainers=ON since Trilinos_ENABLE_Sacado=ON AND Trilinos_ENABLE_KokkosContainers=ON
-- Setting Epetra_ENABLE_Teuchos=ON since Trilinos_ENABLE_Epetra=ON AND Trilinos_ENABLE_Teuchos=ON
-- Setting Shards_ENABLE_Teuchos=ON since Trilinos_ENABLE_Shards=ON AND Trilinos_ENABLE_Teuchos=ON
-- Setting TpetraCore_ENABLE_Epetra=ON since Trilinos_ENABLE_TpetraCore=ON AND Trilinos_ENABLE_Epetra=ON
-- Setting TpetraCore_ENABLE_TpetraTSQR=ON since Trilinos_ENABLE_TpetraCore=ON AND Trilinos_ENABLE_TpetraTSQR=ON
-- Setting Tpetra_ENABLE_TpetraTSQR=ON since Trilinos_ENABLE_Tpetra=ON AND Trilinos_ENABLE_TpetraTSQR=ON
-- Setting EpetraExt_ENABLE_Triutils=ON since Trilinos_ENABLE_EpetraExt=ON AND Trilinos_ENABLE_Triutils=ON
-- Setting Domi_ENABLE_Epetra=ON since Trilinos_ENABLE_Domi=ON AND Trilinos_ENABLE_Epetra=ON
-- Setting Domi_ENABLE_TpetraClassic=ON since Trilinos_ENABLE_Domi=ON AND Trilinos_ENABLE_TpetraClassic=ON
-- Setting Domi_ENABLE_TpetraCore=ON since Trilinos_ENABLE_Domi=ON AND Trilinos_ENABLE_TpetraCore=ON
-- Setting ThyraTpetraAdapters_ENABLE_ThyraEpetraAdapters=ON since Trilinos_ENABLE_ThyraTpetraAdapters=ON AND Trilinos_ENABLE_ThyraEpetraAdapters=ON
-- Setting Thyra_ENABLE_ThyraEpetraAdapters=ON since Trilinos_ENABLE_Thyra=ON AND Trilinos_ENABLE_ThyraEpetraAdapters=ON
-- Setting Thyra_ENABLE_ThyraEpetraExtAdapters=ON since Trilinos_ENABLE_Thyra=ON AND Trilinos_ENABLE_ThyraEpetraExtAdapters=ON
-- Setting Thyra_ENABLE_ThyraTpetraAdapters=ON since Trilinos_ENABLE_Thyra=ON AND Trilinos_ENABLE_ThyraTpetraAdapters=ON
-- Setting Xpetra_ENABLE_Epetra=ON since Trilinos_ENABLE_Xpetra=ON AND Trilinos_ENABLE_Epetra=ON
-- Setting Xpetra_ENABLE_EpetraExt=ON since Trilinos_ENABLE_Xpetra=ON AND Trilinos_ENABLE_EpetraExt=ON
-- Setting Xpetra_ENABLE_Tpetra=ON since Trilinos_ENABLE_Xpetra=ON AND Trilinos_ENABLE_Tpetra=ON
-- Setting Xpetra_ENABLE_KokkosCore=ON since Trilinos_ENABLE_Xpetra=ON AND Trilinos_ENABLE_KokkosCore=ON
-- Setting Xpetra_ENABLE_KokkosContainers=ON since Trilinos_ENABLE_Xpetra=ON AND Trilinos_ENABLE_KokkosContainers=ON
-- Setting Xpetra_ENABLE_Thyra=ON since Trilinos_ENABLE_Xpetra=ON AND Trilinos_ENABLE_Thyra=ON
-- NOTE: Xpetra_ENABLE_Epetra=ON is already set!
-- NOTE: Xpetra_ENABLE_EpetraExt=ON is already set!
-- NOTE: Xpetra_ENABLE_Tpetra=ON is already set!
-- NOTE: Xpetra_ENABLE_KokkosCore=ON is already set!
-- NOTE: Xpetra_ENABLE_KokkosContainers=ON is already set!
-- NOTE: Xpetra_ENABLE_Thyra=ON is already set!
-- Setting AztecOO_ENABLE_Teuchos=ON since Trilinos_ENABLE_AztecOO=ON AND Trilinos_ENABLE_Teuchos=ON
-- Setting Galeri_ENABLE_Epetra=ON since Trilinos_ENABLE_Galeri=ON AND Trilinos_ENABLE_Epetra=ON
-- Setting Galeri_ENABLE_EpetraExt=ON since Trilinos_ENABLE_Galeri=ON AND Trilinos_ENABLE_EpetraExt=ON
-- Setting Galeri_ENABLE_Xpetra=ON since Trilinos_ENABLE_Galeri=ON AND Trilinos_ENABLE_Xpetra=ON
-- Setting Galeri_ENABLE_Tpetra=ON since Trilinos_ENABLE_Galeri=ON AND Trilinos_ENABLE_Tpetra=ON
-- Setting Amesos_ENABLE_EpetraExt=ON since Trilinos_ENABLE_Amesos=ON AND Trilinos_ENABLE_EpetraExt=ON
-- Setting Amesos_ENABLE_Triutils=ON since Trilinos_ENABLE_Amesos=ON AND Trilinos_ENABLE_Triutils=ON
-- Setting Amesos_ENABLE_Galeri=ON since Trilinos_ENABLE_Amesos=ON AND Trilinos_ENABLE_Galeri=ON
-- Setting Zoltan2_ENABLE_Epetra=ON since Trilinos_ENABLE_Zoltan2=ON AND Trilinos_ENABLE_Epetra=ON
-- NOTE: Zoltan2_ENABLE_Epetra=ON is already set!
-- Setting Zoltan2_ENABLE_Galeri=ON since Trilinos_ENABLE_Zoltan2=ON AND Trilinos_ENABLE_Galeri=ON
-- Setting Zoltan2_ENABLE_Pamgen=ON since Trilinos_ENABLE_Zoltan2=ON AND Trilinos_ENABLE_Pamgen=ON
-- Setting Ifpack_ENABLE_Amesos=ON since Trilinos_ENABLE_Ifpack=ON AND Trilinos_ENABLE_Amesos=ON
-- Setting Ifpack_ENABLE_EpetraExt=ON since Trilinos_ENABLE_Ifpack=ON AND Trilinos_ENABLE_EpetraExt=ON
-- Setting Ifpack_ENABLE_AztecOO=ON since Trilinos_ENABLE_Ifpack=ON AND Trilinos_ENABLE_AztecOO=ON
-- Setting Ifpack_ENABLE_Galeri=ON since Trilinos_ENABLE_Ifpack=ON AND Trilinos_ENABLE_Galeri=ON
-- Setting ML_ENABLE_Teuchos=ON since Trilinos_ENABLE_ML=ON AND Trilinos_ENABLE_Teuchos=ON
-- Setting ML_ENABLE_Epetra=ON since Trilinos_ENABLE_ML=ON AND Trilinos_ENABLE_Epetra=ON
-- Setting ML_ENABLE_Zoltan=ON since Trilinos_ENABLE_ML=ON AND Trilinos_ENABLE_Zoltan=ON
-- Setting ML_ENABLE_Galeri=ON since Trilinos_ENABLE_ML=ON AND Trilinos_ENABLE_Galeri=ON
-- Setting ML_ENABLE_Amesos=ON since Trilinos_ENABLE_ML=ON AND Trilinos_ENABLE_Amesos=ON
-- Setting ML_ENABLE_Ifpack=ON since Trilinos_ENABLE_ML=ON AND Trilinos_ENABLE_Ifpack=ON
-- Setting ML_ENABLE_AztecOO=ON since Trilinos_ENABLE_ML=ON AND Trilinos_ENABLE_AztecOO=ON
-- Setting ML_ENABLE_EpetraExt=ON since Trilinos_ENABLE_ML=ON AND Trilinos_ENABLE_EpetraExt=ON
-- Setting ML_ENABLE_Isorropia=ON since Trilinos_ENABLE_ML=ON AND Trilinos_ENABLE_Isorropia=ON
-- Setting Belos_ENABLE_Epetra=ON since Trilinos_ENABLE_Belos=ON AND Trilinos_ENABLE_Epetra=ON
-- Setting Belos_ENABLE_Tpetra=ON since Trilinos_ENABLE_Belos=ON AND Trilinos_ENABLE_Tpetra=ON
-- Setting Belos_ENABLE_Thyra=ON since Trilinos_ENABLE_Belos=ON AND Trilinos_ENABLE_Thyra=ON
-- Setting Belos_ENABLE_AztecOO=ON since Trilinos_ENABLE_Belos=ON AND Trilinos_ENABLE_AztecOO=ON
-- Setting Belos_ENABLE_Galeri=ON since Trilinos_ENABLE_Belos=ON AND Trilinos_ENABLE_Galeri=ON
-- Setting Belos_ENABLE_Triutils=ON since Trilinos_ENABLE_Belos=ON AND Trilinos_ENABLE_Triutils=ON
-- Setting Belos_ENABLE_EpetraExt=ON since Trilinos_ENABLE_Belos=ON AND Trilinos_ENABLE_EpetraExt=ON
-- Setting Belos_ENABLE_Ifpack=ON since Trilinos_ENABLE_Belos=ON AND Trilinos_ENABLE_Ifpack=ON
-- Setting Belos_ENABLE_ML=ON since Trilinos_ENABLE_Belos=ON AND Trilinos_ENABLE_ML=ON
-- NOTE: Belos_ENABLE_AztecOO=ON is already set!
-- Setting ShyLUCore_ENABLE_Tpetra=ON since Trilinos_ENABLE_ShyLUCore=ON AND Trilinos_ENABLE_Tpetra=ON
-- Setting ShyLUCore_ENABLE_Zoltan2=ON since Trilinos_ENABLE_ShyLUCore=ON AND Trilinos_ENABLE_Zoltan2=ON
-- Setting ShyLUCore_ENABLE_ML=ON since Trilinos_ENABLE_ShyLUCore=ON AND Trilinos_ENABLE_ML=ON
-- Setting ShyLU_ENABLE_ShyLUCore=ON since Trilinos_ENABLE_ShyLU=ON AND Trilinos_ENABLE_ShyLUCore=ON
-- Setting Amesos2_ENABLE_Epetra=ON since Trilinos_ENABLE_Amesos2=ON AND Trilinos_ENABLE_Epetra=ON
-- Setting Amesos2_ENABLE_EpetraExt=ON since Trilinos_ENABLE_Amesos2=ON AND Trilinos_ENABLE_EpetraExt=ON
-- Setting Amesos2_ENABLE_Kokkos=ON since Trilinos_ENABLE_Amesos2=ON AND Trilinos_ENABLE_Kokkos=ON
-- NOTE: Amesos2_ENABLE_Kokkos=ON is already set!
-- Setting SEACASIoss_ENABLE_SEACASExodus=ON since Trilinos_ENABLE_SEACASIoss=ON AND Trilinos_ENABLE_SEACASExodus=ON
-- Setting SEACASIoss_ENABLE_Pamgen=ON since Trilinos_ENABLE_SEACASIoss=ON AND Trilinos_ENABLE_Pamgen=ON
-- Setting SEACASIoss_ENABLE_Zoltan=ON since Trilinos_ENABLE_SEACASIoss=ON AND Trilinos_ENABLE_Zoltan=ON
-- Setting SEACASIoss_ENABLE_Kokkos=ON since Trilinos_ENABLE_SEACASIoss=ON AND Trilinos_ENABLE_Kokkos=ON
-- Setting SEACASNemslice_ENABLE_Zoltan=ON since Trilinos_ENABLE_SEACASNemslice=ON AND Trilinos_ENABLE_Zoltan=ON
-- Setting SEACAS_ENABLE_SEACASExodus_for=ON since Trilinos_ENABLE_SEACAS=ON AND Trilinos_ENABLE_SEACASExodus_for=ON
-- Setting SEACAS_ENABLE_SEACASExoIIv2for32=ON since Trilinos_ENABLE_SEACAS=ON AND Trilinos_ENABLE_SEACASExoIIv2for32=ON
-- Setting SEACAS_ENABLE_SEACASNemesis=ON since Trilinos_ENABLE_SEACAS=ON AND Trilinos_ENABLE_SEACASNemesis=ON
-- Setting SEACAS_ENABLE_SEACASChaco=ON since Trilinos_ENABLE_SEACAS=ON AND Trilinos_ENABLE_SEACASChaco=ON
-- Setting SEACAS_ENABLE_SEACASAprepro_lib=ON since Trilinos_ENABLE_SEACAS=ON AND Trilinos_ENABLE_SEACASAprepro_lib=ON
-- Setting SEACAS_ENABLE_SEACASSupes=ON since Trilinos_ENABLE_SEACAS=ON AND Trilinos_ENABLE_SEACASSupes=ON
-- Setting SEACAS_ENABLE_SEACASSuplib=ON since Trilinos_ENABLE_SEACAS=ON AND Trilinos_ENABLE_SEACASSuplib=ON
-- Setting SEACAS_ENABLE_SEACASSuplibC=ON since Trilinos_ENABLE_SEACAS=ON AND Trilinos_ENABLE_SEACASSuplibC=ON
-- Setting SEACAS_ENABLE_SEACASSuplibCpp=ON since Trilinos_ENABLE_SEACAS=ON AND Trilinos_ENABLE_SEACASSuplibCpp=ON
-- Setting SEACAS_ENABLE_SEACASSVDI=ON since Trilinos_ENABLE_SEACAS=ON AND Trilinos_ENABLE_SEACASSVDI=ON
-- Setting SEACAS_ENABLE_SEACASPLT=ON since Trilinos_ENABLE_SEACAS=ON AND Trilinos_ENABLE_SEACASPLT=ON
-- Setting SEACAS_ENABLE_SEACASAlgebra=ON since Trilinos_ENABLE_SEACAS=ON AND Trilinos_ENABLE_SEACASAlgebra=ON
-- Setting SEACAS_ENABLE_SEACASAprepro=ON since Trilinos_ENABLE_SEACAS=ON AND Trilinos_ENABLE_SEACASAprepro=ON
-- Setting SEACAS_ENABLE_SEACASBlot=ON since Trilinos_ENABLE_SEACAS=ON AND Trilinos_ENABLE_SEACASBlot=ON
-- Setting SEACAS_ENABLE_SEACASConjoin=ON since Trilinos_ENABLE_SEACAS=ON AND Trilinos_ENABLE_SEACASConjoin=ON
-- Setting SEACAS_ENABLE_SEACASEjoin=ON since Trilinos_ENABLE_SEACAS=ON AND Trilinos_ENABLE_SEACASEjoin=ON
-- Setting SEACAS_ENABLE_SEACASEpu=ON since Trilinos_ENABLE_SEACAS=ON AND Trilinos_ENABLE_SEACASEpu=ON
-- Setting SEACAS_ENABLE_SEACASExo2mat=ON since Trilinos_ENABLE_SEACAS=ON AND Trilinos_ENABLE_SEACASExo2mat=ON
-- Setting SEACAS_ENABLE_SEACASExodiff=ON since Trilinos_ENABLE_SEACAS=ON AND Trilinos_ENABLE_SEACASExodiff=ON
-- Setting SEACAS_ENABLE_SEACASExomatlab=ON since Trilinos_ENABLE_SEACAS=ON AND Trilinos_ENABLE_SEACASExomatlab=ON
-- Setting SEACAS_ENABLE_SEACASExotxt=ON since Trilinos_ENABLE_SEACAS=ON AND Trilinos_ENABLE_SEACASExotxt=ON
-- Setting SEACAS_ENABLE_SEACASExo_format=ON since Trilinos_ENABLE_SEACAS=ON AND Trilinos_ENABLE_SEACASExo_format=ON
-- Setting SEACAS_ENABLE_SEACASEx1ex2v2=ON since Trilinos_ENABLE_SEACAS=ON AND Trilinos_ENABLE_SEACASEx1ex2v2=ON
-- Setting SEACAS_ENABLE_SEACASFastq=ON since Trilinos_ENABLE_SEACAS=ON AND Trilinos_ENABLE_SEACASFastq=ON
-- Setting SEACAS_ENABLE_SEACASGjoin=ON since Trilinos_ENABLE_SEACAS=ON AND Trilinos_ENABLE_SEACASGjoin=ON
-- Setting SEACAS_ENABLE_SEACASGen3D=ON since Trilinos_ENABLE_SEACAS=ON AND Trilinos_ENABLE_SEACASGen3D=ON
-- Setting SEACAS_ENABLE_SEACASGenshell=ON since Trilinos_ENABLE_SEACAS=ON AND Trilinos_ENABLE_SEACASGenshell=ON
-- Setting SEACAS_ENABLE_SEACASGrepos=ON since Trilinos_ENABLE_SEACAS=ON AND Trilinos_ENABLE_SEACASGrepos=ON
-- Setting SEACAS_ENABLE_SEACASGrope=ON since Trilinos_ENABLE_SEACAS=ON AND Trilinos_ENABLE_SEACASGrope=ON
-- Setting SEACAS_ENABLE_SEACASMapvarlib=ON since Trilinos_ENABLE_SEACAS=ON AND Trilinos_ENABLE_SEACASMapvarlib=ON
-- Setting SEACAS_ENABLE_SEACASMapvar=ON since Trilinos_ENABLE_SEACAS=ON AND Trilinos_ENABLE_SEACASMapvar=ON
-- Setting SEACAS_ENABLE_SEACASMapvar-kd=ON since Trilinos_ENABLE_SEACAS=ON AND Trilinos_ENABLE_SEACASMapvar-kd=ON
-- Setting SEACAS_ENABLE_SEACASMat2exo=ON since Trilinos_ENABLE_SEACAS=ON AND Trilinos_ENABLE_SEACASMat2exo=ON
-- Setting SEACAS_ENABLE_SEACASNemslice=ON since Trilinos_ENABLE_SEACAS=ON AND Trilinos_ENABLE_SEACASNemslice=ON
-- Setting SEACAS_ENABLE_SEACASNemspread=ON since Trilinos_ENABLE_SEACAS=ON AND Trilinos_ENABLE_SEACASNemspread=ON
-- Setting SEACAS_ENABLE_SEACASNumbers=ON since Trilinos_ENABLE_SEACAS=ON AND Trilinos_ENABLE_SEACASNumbers=ON
-- Setting SEACAS_ENABLE_SEACASTxtexo=ON since Trilinos_ENABLE_SEACAS=ON AND Trilinos_ENABLE_SEACASTxtexo=ON
-- Setting SEACAS_ENABLE_SEACASEx2ex1v2=ON since Trilinos_ENABLE_SEACAS=ON AND Trilinos_ENABLE_SEACASEx2ex1v2=ON
-- Setting Anasazi_ENABLE_Tpetra=ON since Trilinos_ENABLE_Anasazi=ON AND Trilinos_ENABLE_Tpetra=ON
-- Setting Anasazi_ENABLE_Epetra=ON since Trilinos_ENABLE_Anasazi=ON AND Trilinos_ENABLE_Epetra=ON
-- Setting Anasazi_ENABLE_EpetraExt=ON since Trilinos_ENABLE_Anasazi=ON AND Trilinos_ENABLE_EpetraExt=ON
-- Setting Anasazi_ENABLE_ThyraCore=ON since Trilinos_ENABLE_Anasazi=ON AND Trilinos_ENABLE_ThyraCore=ON
-- Setting Anasazi_ENABLE_ThyraEpetraAdapters=ON since Trilinos_ENABLE_Anasazi=ON AND Trilinos_ENABLE_ThyraEpetraAdapters=ON
-- Setting Anasazi_ENABLE_Belos=ON since Trilinos_ENABLE_Anasazi=ON AND Trilinos_ENABLE_Belos=ON
-- Setting Anasazi_ENABLE_Amesos=ON since Trilinos_ENABLE_Anasazi=ON AND Trilinos_ENABLE_Amesos=ON
-- Setting Anasazi_ENABLE_AztecOO=ON since Trilinos_ENABLE_Anasazi=ON AND Trilinos_ENABLE_AztecOO=ON
-- NOTE: Anasazi_ENABLE_Belos=ON is already set!
-- NOTE: Anasazi_ENABLE_EpetraExt=ON is already set!
-- Setting Anasazi_ENABLE_Galeri=ON since Trilinos_ENABLE_Anasazi=ON AND Trilinos_ENABLE_Galeri=ON
-- Setting Anasazi_ENABLE_Ifpack=ON since Trilinos_ENABLE_Anasazi=ON AND Trilinos_ENABLE_Ifpack=ON
-- Setting Anasazi_ENABLE_Triutils=ON since Trilinos_ENABLE_Anasazi=ON AND Trilinos_ENABLE_Triutils=ON
-- Setting Ifpack2_ENABLE_Xpetra=ON since Trilinos_ENABLE_Ifpack2=ON AND Trilinos_ENABLE_Xpetra=ON
-- Setting Ifpack2_ENABLE_Zoltan2=ON since Trilinos_ENABLE_Ifpack2=ON AND Trilinos_ENABLE_Zoltan2=ON
-- Setting Ifpack2_ENABLE_ThyraTpetraAdapters=ON since Trilinos_ENABLE_Ifpack2=ON AND Trilinos_ENABLE_ThyraTpetraAdapters=ON
-- Setting Ifpack2_ENABLE_Amesos2=ON since Trilinos_ENABLE_Ifpack2=ON AND Trilinos_ENABLE_Amesos2=ON
-- NOTE: Ifpack2_ENABLE_Amesos2=ON is already set!
-- Setting Ifpack2_ENABLE_ML=ON since Trilinos_ENABLE_Ifpack2=ON AND Trilinos_ENABLE_ML=ON
-- Setting Stratimikos_ENABLE_Amesos=ON since Trilinos_ENABLE_Stratimikos=ON AND Trilinos_ENABLE_Amesos=ON
-- Setting Stratimikos_ENABLE_AztecOO=ON since Trilinos_ENABLE_Stratimikos=ON AND Trilinos_ENABLE_AztecOO=ON
-- Setting Stratimikos_ENABLE_Belos=ON since Trilinos_ENABLE_Stratimikos=ON AND Trilinos_ENABLE_Belos=ON
-- Setting Stratimikos_ENABLE_Ifpack=ON since Trilinos_ENABLE_Stratimikos=ON AND Trilinos_ENABLE_Ifpack=ON
-- Setting Stratimikos_ENABLE_ML=ON since Trilinos_ENABLE_Stratimikos=ON AND Trilinos_ENABLE_ML=ON
-- Setting Stratimikos_ENABLE_EpetraExt=ON since Trilinos_ENABLE_Stratimikos=ON AND Trilinos_ENABLE_EpetraExt=ON
-- Setting Stratimikos_ENABLE_ThyraEpetraAdapters=ON since Trilinos_ENABLE_Stratimikos=ON AND Trilinos_ENABLE_ThyraEpetraAdapters=ON
-- Setting Stratimikos_ENABLE_Triutils=ON since Trilinos_ENABLE_Stratimikos=ON AND Trilinos_ENABLE_Triutils=ON
-- Setting Stratimikos_ENABLE_Ifpack2=ON since Trilinos_ENABLE_Stratimikos=ON AND Trilinos_ENABLE_Ifpack2=ON
-- Setting Stratimikos_ENABLE_ThyraTpetraAdapters=ON since Trilinos_ENABLE_Stratimikos=ON AND Trilinos_ENABLE_ThyraTpetraAdapters=ON
-- Setting FEI_ENABLE_Epetra=ON since Trilinos_ENABLE_FEI=ON AND Trilinos_ENABLE_Epetra=ON
-- Setting FEI_ENABLE_AztecOO=ON since Trilinos_ENABLE_FEI=ON AND Trilinos_ENABLE_AztecOO=ON
-- Setting FEI_ENABLE_Belos=ON since Trilinos_ENABLE_FEI=ON AND Trilinos_ENABLE_Belos=ON
-- Setting FEI_ENABLE_Amesos=ON since Trilinos_ENABLE_FEI=ON AND Trilinos_ENABLE_Amesos=ON
-- Setting FEI_ENABLE_Ifpack=ON since Trilinos_ENABLE_FEI=ON AND Trilinos_ENABLE_Ifpack=ON
-- Setting FEI_ENABLE_ML=ON since Trilinos_ENABLE_FEI=ON AND Trilinos_ENABLE_ML=ON
-- Setting Teko_ENABLE_Isorropia=ON since Trilinos_ENABLE_Teko=ON AND Trilinos_ENABLE_Isorropia=ON
-- Setting Teko_ENABLE_Ifpack2=ON since Trilinos_ENABLE_Teko=ON AND Trilinos_ENABLE_Ifpack2=ON
-- Setting Teko_ENABLE_Amesos2=ON since Trilinos_ENABLE_Teko=ON AND Trilinos_ENABLE_Amesos2=ON
-- Setting Teko_ENABLE_Belos=ON since Trilinos_ENABLE_Teko=ON AND Trilinos_ENABLE_Belos=ON
-- Setting Intrepid_ENABLE_KokkosCore=ON since Trilinos_ENABLE_Intrepid=ON AND Trilinos_ENABLE_KokkosCore=ON
-- Setting Intrepid_ENABLE_KokkosAlgorithms=ON since Trilinos_ENABLE_Intrepid=ON AND Trilinos_ENABLE_KokkosAlgorithms=ON
-- Setting Intrepid_ENABLE_Epetra=ON since Trilinos_ENABLE_Intrepid=ON AND Trilinos_ENABLE_Epetra=ON
-- Setting Intrepid_ENABLE_EpetraExt=ON since Trilinos_ENABLE_Intrepid=ON AND Trilinos_ENABLE_EpetraExt=ON
-- Setting Intrepid_ENABLE_Amesos=ON since Trilinos_ENABLE_Intrepid=ON AND Trilinos_ENABLE_Amesos=ON
-- Setting Intrepid_ENABLE_Pamgen=ON since Trilinos_ENABLE_Intrepid=ON AND Trilinos_ENABLE_Pamgen=ON
-- Setting Intrepid2_ENABLE_Epetra=ON since Trilinos_ENABLE_Intrepid2=ON AND Trilinos_ENABLE_Epetra=ON
-- Setting Intrepid2_ENABLE_EpetraExt=ON since Trilinos_ENABLE_Intrepid2=ON AND Trilinos_ENABLE_EpetraExt=ON
-- Setting Intrepid2_ENABLE_Amesos=ON since Trilinos_ENABLE_Intrepid2=ON AND Trilinos_ENABLE_Amesos=ON
-- Setting Intrepid2_ENABLE_Pamgen=ON since Trilinos_ENABLE_Intrepid2=ON AND Trilinos_ENABLE_Pamgen=ON
-- Setting STK_ENABLE_STKUtil=ON since Trilinos_ENABLE_STK=ON AND Trilinos_ENABLE_STKUtil=ON
-- Setting STK_ENABLE_STKSimd=ON since Trilinos_ENABLE_STK=ON AND Trilinos_ENABLE_STKSimd=ON
-- Setting STK_ENABLE_STKTopology=ON since Trilinos_ENABLE_STK=ON AND Trilinos_ENABLE_STKTopology=ON
-- Setting STK_ENABLE_STKMesh=ON since Trilinos_ENABLE_STK=ON AND Trilinos_ENABLE_STKMesh=ON
-- Setting STK_ENABLE_STKIO=ON since Trilinos_ENABLE_STK=ON AND Trilinos_ENABLE_STKIO=ON
-- Setting STK_ENABLE_STKUnit_test_utils=ON since Trilinos_ENABLE_STK=ON AND Trilinos_ENABLE_STKUnit_test_utils=ON
-- Setting STK_ENABLE_STKSearch=ON since Trilinos_ENABLE_STK=ON AND Trilinos_ENABLE_STKSearch=ON
-- Setting STK_ENABLE_STKSearchUtil=ON since Trilinos_ENABLE_STK=ON AND Trilinos_ENABLE_STKSearchUtil=ON
-- Setting STK_ENABLE_STKTransfer=ON since Trilinos_ENABLE_STK=ON AND Trilinos_ENABLE_STKTransfer=ON
-- Setting STK_ENABLE_STKUnit_tests=ON since Trilinos_ENABLE_STK=ON AND Trilinos_ENABLE_STKUnit_tests=ON
-- Setting STK_ENABLE_STKDoc_tests=ON since Trilinos_ENABLE_STK=ON AND Trilinos_ENABLE_STKDoc_tests=ON
-- Setting STK_ENABLE_STKExprEval=ON since Trilinos_ENABLE_STK=ON AND Trilinos_ENABLE_STKExprEval=ON
-- Setting STK_ENABLE_KokkosCore=ON since Trilinos_ENABLE_STK=ON AND Trilinos_ENABLE_KokkosCore=ON
-- Setting NOX_ENABLE_Epetra=ON since Trilinos_ENABLE_NOX=ON AND Trilinos_ENABLE_Epetra=ON
-- Setting NOX_ENABLE_EpetraExt=ON since Trilinos_ENABLE_NOX=ON AND Trilinos_ENABLE_EpetraExt=ON
-- Setting NOX_ENABLE_ThyraCore=ON since Trilinos_ENABLE_NOX=ON AND Trilinos_ENABLE_ThyraCore=ON
-- Setting NOX_ENABLE_ThyraEpetraAdapters=ON since Trilinos_ENABLE_NOX=ON AND Trilinos_ENABLE_ThyraEpetraAdapters=ON
-- Setting NOX_ENABLE_ThyraEpetraExtAdapters=ON since Trilinos_ENABLE_NOX=ON AND Trilinos_ENABLE_ThyraEpetraExtAdapters=ON
-- Setting NOX_ENABLE_Amesos=ON since Trilinos_ENABLE_NOX=ON AND Trilinos_ENABLE_Amesos=ON
-- Setting NOX_ENABLE_AztecOO=ON since Trilinos_ENABLE_NOX=ON AND Trilinos_ENABLE_AztecOO=ON
-- Setting NOX_ENABLE_Ifpack=ON since Trilinos_ENABLE_NOX=ON AND Trilinos_ENABLE_Ifpack=ON
-- Setting NOX_ENABLE_ML=ON since Trilinos_ENABLE_NOX=ON AND Trilinos_ENABLE_ML=ON
-- Setting NOX_ENABLE_Belos=ON since Trilinos_ENABLE_NOX=ON AND Trilinos_ENABLE_Belos=ON
-- Setting NOX_ENABLE_Anasazi=ON since Trilinos_ENABLE_NOX=ON AND Trilinos_ENABLE_Anasazi=ON
-- Setting NOX_ENABLE_Stratimikos=ON since Trilinos_ENABLE_NOX=ON AND Trilinos_ENABLE_Stratimikos=ON
-- Setting NOX_ENABLE_Teko=ON since Trilinos_ENABLE_NOX=ON AND Trilinos_ENABLE_Teko=ON
-- NOTE: NOX_ENABLE_Stratimikos=ON is already set!
-- Setting NOX_ENABLE_Isorropia=ON since Trilinos_ENABLE_NOX=ON AND Trilinos_ENABLE_Isorropia=ON
-- Setting NOX_ENABLE_Tpetra=ON since Trilinos_ENABLE_NOX=ON AND Trilinos_ENABLE_Tpetra=ON
-- Setting NOX_ENABLE_ThyraTpetraAdapters=ON since Trilinos_ENABLE_NOX=ON AND Trilinos_ENABLE_ThyraTpetraAdapters=ON
-- Setting NOX_ENABLE_Ifpack2=ON since Trilinos_ENABLE_NOX=ON AND Trilinos_ENABLE_Ifpack2=ON
-- Setting Moertel_ENABLE_SEACAS=ON since Trilinos_ENABLE_Moertel=ON AND Trilinos_ENABLE_SEACAS=ON
-- Setting Moertel_ENABLE_Kokkos=ON since Trilinos_ENABLE_Moertel=ON AND Trilinos_ENABLE_Kokkos=ON
-- Setting Moertel_ENABLE_Tpetra=ON since Trilinos_ENABLE_Moertel=ON AND Trilinos_ENABLE_Tpetra=ON
-- NOTE: Moertel_ENABLE_SEACAS=ON is already set!
-- Setting MueLu_ENABLE_Amesos=ON since Trilinos_ENABLE_MueLu=ON AND Trilinos_ENABLE_Amesos=ON
-- Setting MueLu_ENABLE_Amesos2=ON since Trilinos_ENABLE_MueLu=ON AND Trilinos_ENABLE_Amesos2=ON
-- Setting MueLu_ENABLE_Epetra=ON since Trilinos_ENABLE_MueLu=ON AND Trilinos_ENABLE_Epetra=ON
-- Setting MueLu_ENABLE_EpetraExt=ON since Trilinos_ENABLE_MueLu=ON AND Trilinos_ENABLE_EpetraExt=ON
-- Setting MueLu_ENABLE_Teko=ON since Trilinos_ENABLE_MueLu=ON AND Trilinos_ENABLE_Teko=ON
-- Setting MueLu_ENABLE_Ifpack=ON since Trilinos_ENABLE_MueLu=ON AND Trilinos_ENABLE_Ifpack=ON
-- Setting MueLu_ENABLE_Ifpack2=ON since Trilinos_ENABLE_MueLu=ON AND Trilinos_ENABLE_Ifpack2=ON
-- Setting MueLu_ENABLE_Intrepid2=ON since Trilinos_ENABLE_MueLu=ON AND Trilinos_ENABLE_Intrepid2=ON
-- Setting MueLu_ENABLE_ML=ON since Trilinos_ENABLE_MueLu=ON AND Trilinos_ENABLE_ML=ON
-- Setting MueLu_ENABLE_Tpetra=ON since Trilinos_ENABLE_MueLu=ON AND Trilinos_ENABLE_Tpetra=ON
-- Setting MueLu_ENABLE_Zoltan=ON since Trilinos_ENABLE_MueLu=ON AND Trilinos_ENABLE_Zoltan=ON
-- Setting MueLu_ENABLE_Zoltan2=ON since Trilinos_ENABLE_MueLu=ON AND Trilinos_ENABLE_Zoltan2=ON
-- Setting MueLu_ENABLE_Stratimikos=ON since Trilinos_ENABLE_MueLu=ON AND Trilinos_ENABLE_Stratimikos=ON
-- Setting MueLu_ENABLE_Thyra=ON since Trilinos_ENABLE_MueLu=ON AND Trilinos_ENABLE_Thyra=ON
-- Setting MueLu_ENABLE_ThyraTpetraAdapters=ON since Trilinos_ENABLE_MueLu=ON AND Trilinos_ENABLE_ThyraTpetraAdapters=ON
-- Setting MueLu_ENABLE_Isorropia=ON since Trilinos_ENABLE_MueLu=ON AND Trilinos_ENABLE_Isorropia=ON
-- Setting MueLu_ENABLE_KokkosCore=ON since Trilinos_ENABLE_MueLu=ON AND Trilinos_ENABLE_KokkosCore=ON
-- Setting MueLu_ENABLE_KokkosContainers=ON since Trilinos_ENABLE_MueLu=ON AND Trilinos_ENABLE_KokkosContainers=ON
-- Setting MueLu_ENABLE_AztecOO=ON since Trilinos_ENABLE_MueLu=ON AND Trilinos_ENABLE_AztecOO=ON
-- Setting MueLu_ENABLE_Galeri=ON since Trilinos_ENABLE_MueLu=ON AND Trilinos_ENABLE_Galeri=ON
-- Setting MueLu_ENABLE_Belos=ON since Trilinos_ENABLE_MueLu=ON AND Trilinos_ENABLE_Belos=ON
-- Setting MueLu_ENABLE_Pamgen=ON since Trilinos_ENABLE_MueLu=ON AND Trilinos_ENABLE_Pamgen=ON
-- Setting Rythmos_ENABLE_EpetraExt=ON since Trilinos_ENABLE_Rythmos=ON AND Trilinos_ENABLE_EpetraExt=ON
-- Setting Rythmos_ENABLE_ThyraEpetraAdapters=ON since Trilinos_ENABLE_Rythmos=ON AND Trilinos_ENABLE_ThyraEpetraAdapters=ON
-- Setting Rythmos_ENABLE_ThyraEpetraExtAdapters=ON since Trilinos_ENABLE_Rythmos=ON AND Trilinos_ENABLE_ThyraEpetraExtAdapters=ON
-- Setting Rythmos_ENABLE_Sacado=ON since Trilinos_ENABLE_Rythmos=ON AND Trilinos_ENABLE_Sacado=ON
-- Setting Rythmos_ENABLE_Stratimikos=ON since Trilinos_ENABLE_Rythmos=ON AND Trilinos_ENABLE_Stratimikos=ON
-- Setting Rythmos_ENABLE_Belos=ON since Trilinos_ENABLE_Rythmos=ON AND Trilinos_ENABLE_Belos=ON
-- Setting Rythmos_ENABLE_NOX=ON since Trilinos_ENABLE_Rythmos=ON AND Trilinos_ENABLE_NOX=ON
-- Setting Stokhos_ENABLE_EpetraExt=ON since Trilinos_ENABLE_Stokhos=ON AND Trilinos_ENABLE_EpetraExt=ON
-- Setting Stokhos_ENABLE_Ifpack=ON since Trilinos_ENABLE_Stokhos=ON AND Trilinos_ENABLE_Ifpack=ON
-- Setting Stokhos_ENABLE_ML=ON since Trilinos_ENABLE_Stokhos=ON AND Trilinos_ENABLE_ML=ON
-- Setting Stokhos_ENABLE_Anasazi=ON since Trilinos_ENABLE_Stokhos=ON AND Trilinos_ENABLE_Anasazi=ON
-- Setting Stokhos_ENABLE_Sacado=ON since Trilinos_ENABLE_Stokhos=ON AND Trilinos_ENABLE_Sacado=ON
-- Setting Stokhos_ENABLE_NOX=ON since Trilinos_ENABLE_Stokhos=ON AND Trilinos_ENABLE_NOX=ON
-- Setting Stokhos_ENABLE_Isorropia=ON since Trilinos_ENABLE_Stokhos=ON AND Trilinos_ENABLE_Isorropia=ON
-- Setting Stokhos_ENABLE_KokkosKernels=ON since Trilinos_ENABLE_Stokhos=ON AND Trilinos_ENABLE_KokkosKernels=ON
-- Setting Stokhos_ENABLE_TeuchosKokkosComm=ON since Trilinos_ENABLE_Stokhos=ON AND Trilinos_ENABLE_TeuchosKokkosComm=ON
-- Setting Stokhos_ENABLE_KokkosAlgorithms=ON since Trilinos_ENABLE_Stokhos=ON AND Trilinos_ENABLE_KokkosAlgorithms=ON
-- Setting Stokhos_ENABLE_KokkosContainers=ON since Trilinos_ENABLE_Stokhos=ON AND Trilinos_ENABLE_KokkosContainers=ON
-- Setting Stokhos_ENABLE_Tpetra=ON since Trilinos_ENABLE_Stokhos=ON AND Trilinos_ENABLE_Tpetra=ON
-- Setting Stokhos_ENABLE_Ifpack2=ON since Trilinos_ENABLE_Stokhos=ON AND Trilinos_ENABLE_Ifpack2=ON
-- Setting Stokhos_ENABLE_MueLu=ON since Trilinos_ENABLE_Stokhos=ON AND Trilinos_ENABLE_MueLu=ON
-- Setting Stokhos_ENABLE_Belos=ON since Trilinos_ENABLE_Stokhos=ON AND Trilinos_ENABLE_Belos=ON
-- Setting Stokhos_ENABLE_Amesos2=ON since Trilinos_ENABLE_Stokhos=ON AND Trilinos_ENABLE_Amesos2=ON
-- Setting Stokhos_ENABLE_Thyra=ON since Trilinos_ENABLE_Stokhos=ON AND Trilinos_ENABLE_Thyra=ON
-- Setting Stokhos_ENABLE_AztecOO=ON since Trilinos_ENABLE_Stokhos=ON AND Trilinos_ENABLE_AztecOO=ON
-- Setting Stokhos_ENABLE_Stratimikos=ON since Trilinos_ENABLE_Stokhos=ON AND Trilinos_ENABLE_Stratimikos=ON
-- Setting Stokhos_ENABLE_Zoltan=ON since Trilinos_ENABLE_Stokhos=ON AND Trilinos_ENABLE_Zoltan=ON
-- NOTE: Stokhos_ENABLE_KokkosContainers=ON is already set!
-- Setting ROL_ENABLE_Belos=ON since Trilinos_ENABLE_ROL=ON AND Trilinos_ENABLE_Belos=ON
-- Setting ROL_ENABLE_Epetra=ON since Trilinos_ENABLE_ROL=ON AND Trilinos_ENABLE_Epetra=ON
-- Setting ROL_ENABLE_Tpetra=ON since Trilinos_ENABLE_ROL=ON AND Trilinos_ENABLE_Tpetra=ON
-- Setting ROL_ENABLE_Thyra=ON since Trilinos_ENABLE_ROL=ON AND Trilinos_ENABLE_Thyra=ON
-- Setting ROL_ENABLE_Sacado=ON since Trilinos_ENABLE_ROL=ON AND Trilinos_ENABLE_Sacado=ON
-- Setting ROL_ENABLE_Intrepid=ON since Trilinos_ENABLE_ROL=ON AND Trilinos_ENABLE_Intrepid=ON
-- Setting ROL_ENABLE_MiniTensor=ON since Trilinos_ENABLE_ROL=ON AND Trilinos_ENABLE_MiniTensor=ON
-- Setting ROL_ENABLE_Shards=ON since Trilinos_ENABLE_ROL=ON AND Trilinos_ENABLE_Shards=ON
-- Setting ROL_ENABLE_Amesos=ON since Trilinos_ENABLE_ROL=ON AND Trilinos_ENABLE_Amesos=ON
-- Setting ROL_ENABLE_Amesos2=ON since Trilinos_ENABLE_ROL=ON AND Trilinos_ENABLE_Amesos2=ON
-- Setting ROL_ENABLE_Ifpack2=ON since Trilinos_ENABLE_ROL=ON AND Trilinos_ENABLE_Ifpack2=ON
-- Setting ROL_ENABLE_MueLu=ON since Trilinos_ENABLE_ROL=ON AND Trilinos_ENABLE_MueLu=ON
-- Setting ROL_ENABLE_Gtest=ON since Trilinos_ENABLE_ROL=ON AND Trilinos_ENABLE_Gtest=ON
-- Setting Piro_ENABLE_NOX=ON since Trilinos_ENABLE_Piro=ON AND Trilinos_ENABLE_NOX=ON
-- Setting Piro_ENABLE_Rythmos=ON since Trilinos_ENABLE_Piro=ON AND Trilinos_ENABLE_Rythmos=ON
-- Setting Piro_ENABLE_Tempus=ON since Trilinos_ENABLE_Piro=ON AND Trilinos_ENABLE_Tempus=ON
-- Setting Piro_ENABLE_Stokhos=ON since Trilinos_ENABLE_Piro=ON AND Trilinos_ENABLE_Stokhos=ON
-- Setting Piro_ENABLE_OptiPack=ON since Trilinos_ENABLE_Piro=ON AND Trilinos_ENABLE_OptiPack=ON
-- Setting Piro_ENABLE_ROL=ON since Trilinos_ENABLE_Piro=ON AND Trilinos_ENABLE_ROL=ON
-- Setting Piro_ENABLE_Ifpack2=ON since Trilinos_ENABLE_Piro=ON AND Trilinos_ENABLE_Ifpack2=ON
-- Setting Piro_ENABLE_MueLu=ON since Trilinos_ENABLE_Piro=ON AND Trilinos_ENABLE_MueLu=ON
-- Setting Piro_ENABLE_ThyraEpetraAdapters=ON since Trilinos_ENABLE_Piro=ON AND Trilinos_ENABLE_ThyraEpetraAdapters=ON
-- Setting Piro_ENABLE_ThyraEpetraExtAdapters=ON since Trilinos_ENABLE_Piro=ON AND Trilinos_ENABLE_ThyraEpetraExtAdapters=ON
-- Setting Piro_ENABLE_Epetra=ON since Trilinos_ENABLE_Piro=ON AND Trilinos_ENABLE_Epetra=ON
-- Setting Piro_ENABLE_EpetraExt=ON since Trilinos_ENABLE_Piro=ON AND Trilinos_ENABLE_EpetraExt=ON
-- Setting Piro_ENABLE_Tpetra=ON since Trilinos_ENABLE_Piro=ON AND Trilinos_ENABLE_Tpetra=ON
-- Setting PanzerAdaptersSTK_ENABLE_SEACASIoss=ON since Trilinos_ENABLE_PanzerAdaptersSTK=ON AND Trilinos_ENABLE_SEACASIoss=ON
-- Setting PanzerAdaptersSTK_ENABLE_SEACASExodus=ON since Trilinos_ENABLE_PanzerAdaptersSTK=ON AND Trilinos_ENABLE_SEACASExodus=ON
-- Setting PanzerAdaptersSTK_ENABLE_Teko=ON since Trilinos_ENABLE_PanzerAdaptersSTK=ON AND Trilinos_ENABLE_Teko=ON
-- Setting PanzerAdaptersSTK_ENABLE_MueLu=ON since Trilinos_ENABLE_PanzerAdaptersSTK=ON AND Trilinos_ENABLE_MueLu=ON
-- Setting PanzerAdaptersSTK_ENABLE_Ifpack2=ON since Trilinos_ENABLE_PanzerAdaptersSTK=ON AND Trilinos_ENABLE_Ifpack2=ON
-- Setting Panzer_ENABLE_PanzerDofMgr=ON since Trilinos_ENABLE_Panzer=ON AND Trilinos_ENABLE_PanzerDofMgr=ON
-- Setting Panzer_ENABLE_PanzerDiscFE=ON since Trilinos_ENABLE_Panzer=ON AND Trilinos_ENABLE_PanzerDiscFE=ON
-- Setting Panzer_ENABLE_PanzerAdaptersSTK=ON since Trilinos_ENABLE_Panzer=ON AND Trilinos_ENABLE_PanzerAdaptersSTK=ON
-- Setting PyTrilinos_ENABLE_Epetra=ON since Trilinos_ENABLE_PyTrilinos=ON AND Trilinos_ENABLE_Epetra=ON
-- Setting PyTrilinos_ENABLE_Triutils=ON since Trilinos_ENABLE_PyTrilinos=ON AND Trilinos_ENABLE_Triutils=ON
-- Setting PyTrilinos_ENABLE_Tpetra=ON since Trilinos_ENABLE_PyTrilinos=ON AND Trilinos_ENABLE_Tpetra=ON
-- Setting PyTrilinos_ENABLE_EpetraExt=ON since Trilinos_ENABLE_PyTrilinos=ON AND Trilinos_ENABLE_EpetraExt=ON
-- Setting PyTrilinos_ENABLE_Domi=ON since Trilinos_ENABLE_PyTrilinos=ON AND Trilinos_ENABLE_Domi=ON
-- Setting PyTrilinos_ENABLE_Isorropia=ON since Trilinos_ENABLE_PyTrilinos=ON AND Trilinos_ENABLE_Isorropia=ON
-- Setting PyTrilinos_ENABLE_AztecOO=ON since Trilinos_ENABLE_PyTrilinos=ON AND Trilinos_ENABLE_AztecOO=ON
-- Setting PyTrilinos_ENABLE_Galeri=ON since Trilinos_ENABLE_PyTrilinos=ON AND Trilinos_ENABLE_Galeri=ON
-- Setting PyTrilinos_ENABLE_Amesos=ON since Trilinos_ENABLE_PyTrilinos=ON AND Trilinos_ENABLE_Amesos=ON
-- Setting PyTrilinos_ENABLE_Ifpack=ON since Trilinos_ENABLE_PyTrilinos=ON AND Trilinos_ENABLE_Ifpack=ON
-- Setting PyTrilinos_ENABLE_Komplex=ON since Trilinos_ENABLE_PyTrilinos=ON AND Trilinos_ENABLE_Komplex=ON
-- Setting PyTrilinos_ENABLE_Anasazi=ON since Trilinos_ENABLE_PyTrilinos=ON AND Trilinos_ENABLE_Anasazi=ON
-- Setting PyTrilinos_ENABLE_Pliris=ON since Trilinos_ENABLE_PyTrilinos=ON AND Trilinos_ENABLE_Pliris=ON
-- Setting PyTrilinos_ENABLE_ML=ON since Trilinos_ENABLE_PyTrilinos=ON AND Trilinos_ENABLE_ML=ON
-- Setting PyTrilinos_ENABLE_NOX=ON since Trilinos_ENABLE_PyTrilinos=ON AND Trilinos_ENABLE_NOX=ON
-- Setting PyTrilinos_ENABLE_STK=ON since Trilinos_ENABLE_PyTrilinos=ON AND Trilinos_ENABLE_STK=ON
-- Setting TrilinosCouplings_ENABLE_EpetraExt=ON since Trilinos_ENABLE_TrilinosCouplings=ON AND Trilinos_ENABLE_EpetraExt=ON
-- Setting TrilinosCouplings_ENABLE_Isorropia=ON since Trilinos_ENABLE_TrilinosCouplings=ON AND Trilinos_ENABLE_Isorropia=ON
-- Setting TrilinosCouplings_ENABLE_Amesos=ON since Trilinos_ENABLE_TrilinosCouplings=ON AND Trilinos_ENABLE_Amesos=ON
-- Setting TrilinosCouplings_ENABLE_AztecOO=ON since Trilinos_ENABLE_TrilinosCouplings=ON AND Trilinos_ENABLE_AztecOO=ON
-- Setting TrilinosCouplings_ENABLE_Belos=ON since Trilinos_ENABLE_TrilinosCouplings=ON AND Trilinos_ENABLE_Belos=ON
-- Setting TrilinosCouplings_ENABLE_Ifpack=ON since Trilinos_ENABLE_TrilinosCouplings=ON AND Trilinos_ENABLE_Ifpack=ON
-- Setting TrilinosCouplings_ENABLE_ML=ON since Trilinos_ENABLE_TrilinosCouplings=ON AND Trilinos_ENABLE_ML=ON
-- Setting TrilinosCouplings_ENABLE_NOX=ON since Trilinos_ENABLE_TrilinosCouplings=ON AND Trilinos_ENABLE_NOX=ON
-- Setting TrilinosCouplings_ENABLE_Zoltan=ON since Trilinos_ENABLE_TrilinosCouplings=ON AND Trilinos_ENABLE_Zoltan=ON
-- Setting TrilinosCouplings_ENABLE_STK=ON since Trilinos_ENABLE_TrilinosCouplings=ON AND Trilinos_ENABLE_STK=ON
-- Setting TrilinosCouplings_ENABLE_Stokhos=ON since Trilinos_ENABLE_TrilinosCouplings=ON AND Trilinos_ENABLE_Stokhos=ON
-- NOTE: TrilinosCouplings_ENABLE_Amesos=ON is already set!
-- NOTE: TrilinosCouplings_ENABLE_Isorropia=ON is already set!
-- Setting TrilinosCouplings_ENABLE_Epetra=ON since Trilinos_ENABLE_TrilinosCouplings=ON AND Trilinos_ENABLE_Epetra=ON
-- NOTE: TrilinosCouplings_ENABLE_EpetraExt=ON is already set!
-- NOTE: TrilinosCouplings_ENABLE_Ifpack=ON is already set!
-- Setting TrilinosCouplings_ENABLE_Intrepid=ON since Trilinos_ENABLE_TrilinosCouplings=ON AND Trilinos_ENABLE_Intrepid=ON
-- Setting TrilinosCouplings_ENABLE_Intrepid2=ON since Trilinos_ENABLE_TrilinosCouplings=ON AND Trilinos_ENABLE_Intrepid2=ON
-- Setting TrilinosCouplings_ENABLE_Pamgen=ON since Trilinos_ENABLE_TrilinosCouplings=ON AND Trilinos_ENABLE_Pamgen=ON
-- NOTE: TrilinosCouplings_ENABLE_AztecOO=ON is already set!
-- NOTE: TrilinosCouplings_ENABLE_ML=ON is already set!
-- NOTE: TrilinosCouplings_ENABLE_Zoltan=ON is already set!
-- Setting TrilinosCouplings_ENABLE_Teko=ON since Trilinos_ENABLE_TrilinosCouplings=ON AND Trilinos_ENABLE_Teko=ON
-- Setting TrilinosCouplings_ENABLE_KokkosKernels=ON since Trilinos_ENABLE_TrilinosCouplings=ON AND Trilinos_ENABLE_KokkosKernels=ON
-- Setting TrilinosCouplings_ENABLE_Tpetra=ON since Trilinos_ENABLE_TrilinosCouplings=ON AND Trilinos_ENABLE_Tpetra=ON
-- Setting TrilinosCouplings_ENABLE_MueLu=ON since Trilinos_ENABLE_TrilinosCouplings=ON AND Trilinos_ENABLE_MueLu=ON
-- Setting TrilinosCouplings_ENABLE_KokkosCore=ON since Trilinos_ENABLE_TrilinosCouplings=ON AND Trilinos_ENABLE_KokkosCore=ON
-- Setting TrilinosCouplings_ENABLE_TeuchosKokkosCompat=ON since Trilinos_ENABLE_TrilinosCouplings=ON AND Trilinos_ENABLE_TeuchosKokkosCompat=ON
-- Setting TrilinosCouplings_ENABLE_KokkosContainers=ON since Trilinos_ENABLE_TrilinosCouplings=ON AND Trilinos_ENABLE_KokkosContainers=ON
-- Setting TrilinosCouplings_ENABLE_TeuchosKokkosComm=ON since Trilinos_ENABLE_TrilinosCouplings=ON AND Trilinos_ENABLE_TeuchosKokkosComm=ON
-- NOTE: TrilinosCouplings_ENABLE_Stokhos=ON is already set!
-- NOT setting TrilinosCouplings_ENABLE_TriKota=ON since TriKota is NOT enabled at this point!
-- Setting TrilinosCouplings_ENABLE_Sacado=ON since Trilinos_ENABLE_TrilinosCouplings=ON AND Trilinos_ENABLE_Sacado=ON
-- Setting TrilinosCouplings_ENABLE_Stratimikos=ON since Trilinos_ENABLE_TrilinosCouplings=ON AND Trilinos_ENABLE_Stratimikos=ON
-- Setting Pike_ENABLE_PikeBlackBox=ON since Trilinos_ENABLE_Pike=ON AND Trilinos_ENABLE_PikeBlackBox=ON
-- Setting Pike_ENABLE_PikeImplicit=ON since Trilinos_ENABLE_Pike=ON AND Trilinos_ENABLE_PikeImplicit=ON

Enabling all remaining required TPLs for current set of enabled packages ...

-- Setting TPL_ENABLE_BLAS=ON because it is required by the enabled package TeuchosNumerics
-- Setting TPL_ENABLE_LAPACK=ON because it is required by the enabled package TeuchosNumerics
-- Setting TPL_ENABLE_Boost=ON because it is required by the enabled package MiniTensor
-- Setting TPL_ENABLE_Netcdf=ON because it is required by the enabled package SEACASExodus
-- Setting TPL_ENABLE_X11=ON because it is required by the enabled package SEACASSVDI
-- Setting TPL_ENABLE_Matio=ON because it is required by the enabled package SEACASExo2mat
-- Setting TPL_ENABLE_BoostLib=ON because it is required by the enabled package STKTopology

Enabling all optional package TPL support <TRIBITS_PACKAGE>_ENABLE_<DEPTPL> not currently disabled for enabled TPLs ...

-- Setting ThreadPool_ENABLE_Pthread=ON since TPL_ENABLE_Pthread=ON
-- Setting ThreadPool_ENABLE_MPI=ON since TPL_ENABLE_MPI=ON
-- Setting KokkosCore_ENABLE_Pthread=ON since TPL_ENABLE_Pthread=ON
-- Setting KokkosCore_ENABLE_DLlib=ON since TPL_ENABLE_DLlib=ON
-- Setting KokkosContainers_ENABLE_Pthread=ON since TPL_ENABLE_Pthread=ON
-- Setting KokkosAlgorithms_ENABLE_Pthread=ON since TPL_ENABLE_Pthread=ON
-- Setting TeuchosCore_ENABLE_Boost=ON since TPL_ENABLE_Boost=ON
-- Setting TeuchosCore_ENABLE_MPI=ON since TPL_ENABLE_MPI=ON
-- Setting TeuchosKokkosCompat_ENABLE_Pthread=ON since TPL_ENABLE_Pthread=ON
-- Setting TeuchosKokkosComm_ENABLE_MPI=ON since TPL_ENABLE_MPI=ON
-- Setting Epetra_ENABLE_MPI=ON since TPL_ENABLE_MPI=ON
-- Setting Zoltan_ENABLE_MPI=ON since TPL_ENABLE_MPI=ON
-- Setting TpetraCore_ENABLE_MPI=ON since TPL_ENABLE_MPI=ON
-- Setting Pamgen_ENABLE_Boost=ON since TPL_ENABLE_Boost=ON
-- Setting Ifpack_ENABLE_Boost=ON since TPL_ENABLE_Boost=ON
-- Setting ML_ENABLE_MPI=ON since TPL_ENABLE_MPI=ON
-- Setting ShyLUCore_ENABLE_MPI=ON since TPL_ENABLE_MPI=ON
-- Setting Amesos2_ENABLE_MPI=ON since TPL_ENABLE_MPI=ON
-- Setting SEACASExodus_ENABLE_MPI=ON since TPL_ENABLE_MPI=ON
-- Setting SEACAS_ENABLE_MPI=ON since TPL_ENABLE_MPI=ON
-- Setting FEI_ENABLE_MPI=ON since TPL_ENABLE_MPI=ON
-- Setting FEI_ENABLE_Boost=ON since TPL_ENABLE_Boost=ON
-- Setting STKUtil_ENABLE_Boost=ON since TPL_ENABLE_Boost=ON
-- Setting STKUtil_ENABLE_BoostLib=ON since TPL_ENABLE_BoostLib=ON
-- Setting STKIO_ENABLE_Boost=ON since TPL_ENABLE_Boost=ON
-- Setting STKIO_ENABLE_BoostLib=ON since TPL_ENABLE_BoostLib=ON
-- Setting STKSearch_ENABLE_Boost=ON since TPL_ENABLE_Boost=ON
-- Setting STKSearch_ENABLE_BoostLib=ON since TPL_ENABLE_BoostLib=ON
-- NOTE: STKSearch_ENABLE_Boost=ON is already set!
-- NOTE: STKSearch_ENABLE_BoostLib=ON is already set!
-- Setting STKSearchUtil_ENABLE_Boost=ON since TPL_ENABLE_Boost=ON
-- Setting STKSearchUtil_ENABLE_BoostLib=ON since TPL_ENABLE_BoostLib=ON
-- NOTE: STKSearchUtil_ENABLE_Boost=ON is already set!
-- NOTE: STKSearchUtil_ENABLE_BoostLib=ON is already set!
-- Setting STKTransfer_ENABLE_Boost=ON since TPL_ENABLE_Boost=ON
-- Setting STKTransfer_ENABLE_BoostLib=ON since TPL_ENABLE_BoostLib=ON
-- Setting STKUnit_tests_ENABLE_Boost=ON since TPL_ENABLE_Boost=ON
-- Setting STKUnit_tests_ENABLE_BoostLib=ON since TPL_ENABLE_BoostLib=ON
-- Setting STKDoc_tests_ENABLE_Boost=ON since TPL_ENABLE_Boost=ON
-- Setting STKDoc_tests_ENABLE_BoostLib=ON since TPL_ENABLE_BoostLib=ON
-- Setting STKExprEval_ENABLE_Boost=ON since TPL_ENABLE_Boost=ON
-- Setting STKExprEval_ENABLE_BoostLib=ON since TPL_ENABLE_BoostLib=ON
-- Setting STK_ENABLE_MPI=ON since TPL_ENABLE_MPI=ON
-- Setting NOX_ENABLE_LAPACK=ON since TPL_ENABLE_LAPACK=ON
-- Setting NOX_ENABLE_BLAS=ON since TPL_ENABLE_BLAS=ON
-- Setting MueLu_ENABLE_Boost=ON since TPL_ENABLE_Boost=ON
-- Setting Rythmos_ENABLE_Boost=ON since TPL_ENABLE_Boost=ON
-- Setting Tempus_ENABLE_MPI=ON since TPL_ENABLE_MPI=ON
-- Setting Stokhos_ENABLE_Boost=ON since TPL_ENABLE_Boost=ON
-- Setting ROL_ENABLE_Boost=ON since TPL_ENABLE_Boost=ON

Enabling TPLs based on <TRIBITS_PACKAGE>_ENABLE_<TPL>=ON if TPL is not explicitly disabled ...


Set cache entries for optional packages/TPLs and tests/examples for packages actually enabled ...


Enabling the shell of non-enabled parent packages (mostly for show) that have at least one subpackage enabled ...


Final set of enabled packages:  Gtest ThreadPool Kokkos Teuchos KokkosKernels RTOp Sacado MiniTensor Epetra Zoltan Shards GlobiPack Triutils Tpetra TrilinosSS EpetraExt Domi Thyra Xpetra OptiPack Isorropia Pliris AztecOO Galeri Amesos Pamgen Zoltan2 Ifpack ML Belos ShyLU Amesos2 SEACAS Komplex Anasazi Ifpack2 Stratimikos FEI Teko Intrepid Intrepid2 STK Phalanx NOX Moertel MueLu Rythmos Tempus Stokhos ROL Piro Panzer PyTrilinos TrilinosCouplings Pike 55

Final set of enabled SE packages:  Gtest ThreadPool KokkosCore KokkosContainers KokkosAlgorithms Kokkos TeuchosCore TeuchosParameterList TeuchosComm TeuchosNumerics TeuchosRemainder TeuchosKokkosCompat TeuchosKokkosComm Teuchos KokkosKernels RTOp Sacado MiniTensor Epetra Zoltan Shards GlobiPack Triutils TpetraClassic TpetraTSQR TpetraCore Tpetra TrilinosSS EpetraExt Domi ThyraCore ThyraEpetraAdapters ThyraEpetraExtAdapters ThyraTpetraAdapters Thyra Xpetra OptiPack Isorropia Pliris AztecOO Galeri Amesos Pamgen Zoltan2 Ifpack ML Belos ShyLUCore ShyLU Amesos2 SEACASExodus SEACASExodus_for SEACASExoIIv2for32 SEACASNemesis SEACASIoss SEACASChaco SEACASAprepro_lib SEACASSupes SEACASSuplib SEACASSuplibC SEACASSuplibCpp SEACASSVDI SEACASPLT SEACASAlgebra SEACASAprepro SEACASBlot SEACASConjoin SEACASEjoin SEACASEpu SEACASExo2mat SEACASExodiff SEACASExomatlab SEACASExotxt SEACASExo_format SEACASEx1ex2v2 SEACASFastq SEACASGjoin SEACASGen3D SEACASGenshell SEACASGrepos SEACASGrope SEACASMapvarlib SEACASMapvar SEACASMapvar-kd SEACASMat2exo SEACASNemslice SEACASNemspread SEACASNumbers SEACASTxtexo SEACASEx2ex1v2 SEACAS Komplex Anasazi Ifpack2 Stratimikos FEI Teko Intrepid Intrepid2 STKUtil STKSimd STKTopology STKMesh STKIO STKUnit_test_utils STKSearch STKSearchUtil STKTransfer STKUnit_tests STKDoc_tests STKExprEval STK Phalanx NOX Moertel MueLu Rythmos Tempus Stokhos ROL Piro PanzerCore PanzerDofMgr PanzerDiscFE PanzerAdaptersSTK Panzer PyTrilinos TrilinosCouplings PikeBlackBox PikeImplicit Pike 131

Final set of non-enabled packages:  Claps Trios TriKota NewPackage MeshingGenie 5

Final set of non-enabled SE packages:  KokkosExample TeuchosParser Claps ShyLUHTS ShyLUTacho ShyLUBDDC ShyLUBasker ShyLUFastILU Trioscommsplitter Triossupport Triosnnti Triosnssi Triosprograms Triosexamples Triostests Triosnetcdf-service Trios TriKota STKClassic STKExp NewPackage MeshingGenie 22

Final set of enabled TPLs:  Pthread MPI BLAS LAPACK Boost Netcdf gtest BoostLib Matio X11 DLlib 11

Final set of non-enabled TPLs:  MKL yaml-cpp Peano CUDA CUSPARSE Thrust Cusp TBB HWLOC QTHREAD BinUtils ARPREC QD Scotch OVIS gpcd METIS ParMETIS PuLP TopoManager LibTopoMap PaToH CppUnit ADOLC ADIC TVMET MF ExodusII Nemesis XDMF Zlib HDF5 CGNS Pnetcdf y12m SuperLUDist SuperLUMT SuperLU Cholmod UMFPACK MA28 AMD CSparse HYPRE PETSC BLACS SCALAPACK MUMPS PARDISO_MKL PARDISO Oski TAUCS ForUQTK Dakota HIPS MATLAB CASK SPARSKIT QT BoostAlbLib OpenNURBS Portals CrayPortals Gemini InfiniBand BGPDCMF BGQPAMI Pablo HPCToolkit Clp GLPK qpOASES PAPI MATLABLib Eigen Lemon GLM quadmath CAMAL RTlib AmgX CGAL CGALCore VTune TASMANIAN ArrayFireCPU SimMesh SimModel SimParasolid SimAcis SimField 91

Setting up export dependencies for all enabled SE packages ...


Probing the environment ...

-- USE_XSDK_DEFAULTS='FALSE'
-- BUILD_SHARED_LIBS='ON'
-- CMAKE_BUILD_TYPE='RELEASE'
-- MPI_USE_COMPILER_WRAPPERS='ON'
-- Leaving current CMAKE_C_COMPILER=/usr/bin/mpicc since it is already set!
-- Leaving current CMAKE_CXX_COMPILER=/usr/bin/mpicxx since it is already set!
-- Leaving current CMAKE_Fortran_COMPILER=/usr/bin/mpif90 since it is already set!
-- MPI_EXEC='/usr/bin/mpiexec'
-- MPI_EXEC='/usr/bin/mpiexec'
-- CMAKE_C_COMPILER_ID='GNU'
-- CMAKE_C_COMPILER_VERSION='8.2.1'
-- CMAKE_CXX_COMPILER_ID='GNU'
-- CMAKE_CXX_COMPILER_VERSION='8.2.1'
-- Trilinos_SET_INSTALL_RPATH='TRUE'
-- CMAKE_INSTALL_RPATH_USE_LINK_PATH='TRUE'
-- Setting default for CMAKE_INSTALL_RPATH pointing to Trilinos_INSTALL_LIB_DIR
-- CMAKE_INSTALL_RPATH='/usr/lib'
-- C++11 Flags already set: '-std=c++11'
-- Trilinos_ENABLE_CXX11=ON

Getting information for all enabled TPLs ...

Processing enabled TPL: Pthread (enabled explicitly, disable with -DTPL_ENABLE_Pthread=OFF)
Processing enabled TPL: MPI (enabled explicitly, disable with -DTPL_ENABLE_MPI=OFF)
Processing enabled TPL: BLAS (enabled by TeuchosNumerics, disable with -DTPL_ENABLE_BLAS=OFF)
-- BLAS_LIBRARY_NAMES='blas blas_win32'
-- TPL_BLAS_LIBRARIES='/usr/lib/libblas.so'
Processing enabled TPL: LAPACK (enabled by TeuchosNumerics, disable with -DTPL_ENABLE_LAPACK=OFF)
-- LAPACK_LIBRARY_NAMES='lapack lapack_win32'
-- TPL_LAPACK_LIBRARIES='/usr/lib/liblapack.so'
Processing enabled TPL: Boost (enabled by MiniTensor, disable with -DTPL_ENABLE_Boost=OFF)
-- TPL_Boost_INCLUDE_DIRS='/usr/include'
Processing enabled TPL: Netcdf (enabled by SEACASExodus, disable with -DTPL_ENABLE_Netcdf=OFF)
-- Netcdf_LIBRARY_NAMES='netcdf'
-- TPL_Netcdf_LIBRARIES='/usr/lib/libnetcdf.so'
-- TPL_Netcdf_INCLUDE_DIRS='/usr/include'
Processing enabled TPL: gtest (enabled explicitly, disable with -DTPL_ENABLE_gtest=OFF)
-- gtest_LIBRARY_NAMES='gtest'
-- TPL_gtest_LIBRARIES='/usr/lib/libgtest.so'
-- TPL_gtest_INCLUDE_DIRS='/usr/include'
Processing enabled TPL: BoostLib (enabled by STKTopology, disable with -DTPL_ENABLE_BoostLib=OFF)
-- BoostLib_LIBRARY_NAMES='boost_program_options;boost_system'
-- TPL_BoostLib_LIBRARIES='/usr/lib/libboost_program_options.so;/usr/lib/libboost_system.so'
-- TPL_BoostLib_INCLUDE_DIRS='/usr/include'
Processing enabled TPL: Matio (enabled by SEACASExo2mat, disable with -DTPL_ENABLE_Matio=OFF)
-- Matio_LIBRARY_NAMES='matio'
-- TPL_Matio_LIBRARIES='/usr/lib/libmatio.so'
-- TPL_Matio_INCLUDE_DIRS='/usr/include'
Processing enabled TPL: X11 (enabled by SEACASSVDI, disable with -DTPL_ENABLE_X11=OFF)
-- X11_LIBRARY_NAMES='X11'
-- TPL_X11_LIBRARIES='/usr/lib/libX11.so'
-- TPL_X11_INCLUDE_DIRS='/usr/include'
Processing enabled TPL: DLlib (enabled explicitly, disable with -DTPL_ENABLE_DLlib=OFF)
-- Attempting to tentatively enable TPL 'DLlib' ...
-- DLlib_LIBRARY_NAMES='dl'
-- TPL_DLlib_LIBRARIES='/usr/lib/libdl.so'
-- Attempt to tentatively enable TPL 'DLlib' passed!

Setting up testing support ...

-- CTEST_DROP_METHOD='http'
-- CTEST_DROP_SITE='testing.sandia.gov'
-- CTEST_PROJECT_NAME='Trilinos'
-- CTEST_DROP_LOCATION='/cdash/submit.php?project=Trilinos'
-- CTEST_TRIGGER_SITE=''
-- CTEST_DROP_SITE_CDASH='TRUE'

Configuring individual enabled Trilinos packages ...

Processing enabled package: Gtest (Libs, Tests, Examples)
Processing enabled package: ThreadPool (Libs, Tests, Examples)
-- ThreadPool_test_tpi_unit_serial: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- ThreadPool_test_tpi_cpp: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- ThreadPool_test_tpi_sum_serial: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- ThreadPool_test_tpi_hpccg_serial_1: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- ThreadPool_test_tpi_hpccg_serial_2: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- ThreadPool_test_tpi_hpccg_serial_4: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- ThreadPool_test_tpi_hhpccg_serial_1: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- ThreadPool_test_tpi_hhpccg_serial_2: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- ThreadPool_test_tpi_hhpccg_serial_4: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
Processing enabled package: Kokkos (Core, Containers, Algorithms, Tests, Examples)
Processing enabled package: Teuchos (Core, ParameterList, Comm, Numerics, Remainder, KokkosCompat, KokkosComm, Tests, Examples)
-- C++ compiler supports __attribute__((constructor)) syntax
-- C++ compiler supports __attribute__((weak)) syntax and testing weak functions
-- C++ compiler does NOT support #pragma weak syntax and testing weak functions
Processing enabled package: KokkosKernels (Libs, Tests, Examples)

=======================
KokkosKernels ETI Types
   Devices: <Serial,HostSpace>
   Scalars: double;complex<double>
=======================

Processing enabled package: RTOp (Libs, Tests, Examples)
Processing enabled package: Sacado (Libs, Tests, Examples)
Processing enabled package: MiniTensor (Libs, Tests, Examples)
Processing enabled package: Epetra (Libs, Tests, Examples)
Found new version of lapack. dggsvd3 is available.
-- Epetra_petra_power_method: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Epetra_verySimple: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Epetra_UG_Ex1: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Epetra_UG_ExMaps: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Epetra_petra_power_method_LL: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Epetra_verySimple_LL: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
Processing enabled package: Zoltan (Libs, Tests, Examples)
-- Zoltan_ch_brack2_3_zoltan_serial: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Zoltan_ch_bug_zoltan_serial: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Zoltan_ch_degenerate_zoltan_serial: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Zoltan_ch_degenerateAA_zoltan_serial: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Zoltan_ch_drake_zoltan_serial: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Zoltan_ch_ewgt_zoltan_serial: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Zoltan_ch_grid20x19_zoltan_serial: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Zoltan_ch_hammond_zoltan_serial: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Zoltan_ch_hammond2_zoltan_serial: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Zoltan_ch_hughes_zoltan_serial: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Zoltan_ch_nograph_zoltan_serial: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Zoltan_ch_onedbug_zoltan_serial: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Zoltan_ch_serial_zoltan_serial: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Zoltan_ch_simple_zoltan_serial: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Zoltan_ch_simple3d_zoltan_serial: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Zoltan_ch_vwgt_zoltan_serial: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Zoltan_ch_vwgt2_zoltan_serial: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Zoltan_hg_cage10_zoltan_serial: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Zoltan_hg_diag500_4_zoltan_serial: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Zoltan_hg_ewgt_zoltan_serial: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Zoltan_hg_felix_zoltan_serial: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Zoltan_hg_ibm03_zoltan_serial: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Zoltan_hg_nograph_zoltan_serial: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Zoltan_hg_simple_zoltan_serial: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Zoltan_hg_vwgt_zoltan_serial: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
Processing enabled package: Shards (Libs, Tests, Examples)
Processing enabled package: GlobiPack (Libs, Tests, Examples)
Processing enabled package: Triutils (Libs, Tests, Examples)
Processing enabled package: Tpetra (Classic, TSQR, Core, Tests, Examples)
-- Tpetra execution space availability (ON means available): 
--   - Serial:  ON
--   - Threads: OFF
--   - OpenMP:  OFF
--   - Cuda:    OFF
-- User-set default Node: Kokkos::Compat::KokkosSerialWrapperNode
-- Not enabling Tpetra/RTI
-- TpetraCore_TpetraUtils_UnitTests: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- TpetraCore_TpetraUtils_merge: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
Processing enabled package: TrilinosSS (Libs, Tests, Examples)
Processing enabled package: EpetraExt (Libs, Tests, Examples)
-- EpetraExt_EpetraExt_MapColoring_test: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- EpetraExt_EpetraExt_MapColoring_test_LL: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
Processing enabled package: Domi (Libs, Tests, Examples)
Processing enabled package: Thyra (Core, EpetraAdapters, EpetraExtAdapters, TpetraAdapters, Tests, Examples)
-- ThyraCore_test_composite_linear_ops_serial: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
Processing enabled package: Xpetra (Libs, Tests, Examples)
-- Xpetra support for 32 bit Epetra enabled.
--    Xpetra_Epetra_NO_32BIT_GLOBAL_INDICES=OFF
-- Xpetra support for 64 bit Epetra enabled.
--    Xpetra_Epetra_NO_64BIT_GLOBAL_INDICES=OFF
Processing enabled package: OptiPack (Libs, Tests, Examples)
Processing enabled package: Isorropia (Libs, Tests, Examples)
Processing enabled package: Pliris (Libs, Tests, Examples)
     Building the double precision(default) library
Processing enabled package: AztecOO (Libs, Tests, Examples)
Processing enabled package: Galeri (Libs, Tests, Examples)
-- Galeri_VerySimple: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
Processing enabled package: Amesos (Libs, Tests, Examples)
Processing enabled package: Pamgen (Libs, Tests, Examples)
-- Pamgen_run_test_script_01: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_02: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_03: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_04: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_05: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_06: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_07: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_08: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_09: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_10: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_11: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_13: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_14: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_15: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_16: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_17: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_18: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_19: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_20: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_21: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_22: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_23: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_24: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_25: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_26: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_27: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_28: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_29: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_30: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_31: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_32: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_33: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_34: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_35: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_36: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_37: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_38: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_39: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_40: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_41: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_42: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_43: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_44: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_45: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_46: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_47: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_48: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_49: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_50: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_51: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_52: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_53: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_54: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_55: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_56: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_57: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_58: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_59: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_60: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_61: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_62: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_63: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_64: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_65: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_66: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_67: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_68: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_run_test_script_69: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Pamgen_rtc_test: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
Processing enabled package: Zoltan2 (Libs, Tests, Examples)
Processing enabled package: Ifpack (Libs, Tests, Examples)
Processing enabled package: ML (Libs, Tests, Examples)
Processing enabled package: Belos (Libs, Tests, Examples)
-- Belos_bl_gmres_complex_diag: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Belos_tfqmr_complex_diag: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
Processing enabled package: ShyLU (Core, Tests, Examples)
Processing enabled package: Amesos2 (Libs, Tests, Examples)
-- Amesos2_klu2_simple: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
Processing enabled package: SEACAS (Exodus, Exodus_for, ExoIIv2for32, Nemesis, Ioss, Chaco, Aprepro_lib, Supes, Suplib, SuplibC, SuplibCpp, SVDI, PLT, Algebra, Aprepro, Blot, Conjoin, Ejoin, Epu, Exo2mat, Exodiff, Exomatlab, Exotxt, Exo_format, Ex1ex2v2, Fastq, Gjoin, Gen3D, Genshell, Grepos, Grope, Mapvarlib, Mapvar, Mapvar-kd, Mat2exo, Nemslice, Nemspread, Numbers, Txtexo, Ex2ex1v2, Tests, Examples)
-- SEACASIoss_Utst_superelement: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
Processing enabled package: Komplex (Libs, Tests, Examples)
Processing enabled package: Anasazi (Libs, Tests, Examples)
-- Anasazi_Epetra_BKS_QEVP_test: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Anasazi_MVOPComplexTester: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
Processing enabled package: Ifpack2 (Libs, Tests, Examples)
Processing enabled package: Stratimikos (Libs, Tests, Examples)
-- Stratimikos_test_single_belos_thyra_solver_driver: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
Processing enabled package: FEI (Libs, Tests, Examples)
Processing enabled package: Teko (Libs, Tests, Examples)
Processing enabled package: Intrepid (Libs, Tests, Examples)
-- Enable Kokkos support: ON
Processing enabled package: Intrepid2 (Libs, Tests, Examples)
Processing enabled package: STK (Util, Simd, Topology, Mesh, IO, Unit_test_utils, Search, SearchUtil, Transfer, Unit_tests, Doc_tests, ExprEval, Tests, Examples)
Processing enabled package: Phalanx (Libs, Tests, Examples)
-- Execution Space: SERIAL
-- Index Size Type: INT
-- Kokkos AMT support: OFF
Processing enabled package: NOX (Libs, Tests, Examples)
Processing enabled package: Moertel (Libs, Tests, Examples)
Processing enabled package: MueLu (Libs, Tests, Examples)
-- MueLu_Maxwell3D: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- MueLu_Helmholtz1DSerial: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- MueLu_Helmholtz2DSerial: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- MueLu_Helmholtz3DSerial: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- MueLu_HelmholtzFEM2DSerial: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- MueLu_HelmholtzFEM3D: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
Processing enabled package: Rythmos (Libs, Tests, Examples)
-- Rythmos_StackedStepper_UnitTest: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
-- Rythmos_CharonRythmos_UnitTest: NOT added test because TPL_ENABLE_MPI='ON' and COMM='serial'!
Processing enabled package: Tempus (Libs, Tests, Examples)
Processing enabled package: Stokhos (Libs, Tests, Examples)
Processing enabled package: ROL (Libs, Tests, Examples)
-- Configuring ROL with ROL_ENABLE_TIMERS=OFF
Processing enabled package: Piro (Libs, Tests, Examples)
Processing enabled package: Panzer (Core, DofMgr, DiscFE, AdaptersSTK, Tests, Examples)
-- Hessian support Off
Processing enabled package: PyTrilinos (Libs, Tests, Examples)
-- Found PythonInterp: /usr/bin/python2 (found suitable version "2.7.15", minimum required is "2.5") 
-- PYTHON_INCLUDE_PATH is /usr/include/python2.7
-- Enabled PyTrilinos modules:
--     Teuchos;Epetra;TriUtils;Tpetra;Domi;EpetraExt;Isorropia;Pliris;AztecOO;Galeri;Amesos;IFPACK;Komplex;Anasazi;ML;NOX;LOCA
-- PyTrilinos installation path: /usr/lib/python2.7/site-packages/PyTrilinos

Processing enabled package: TrilinosCouplings (Libs, Tests, Examples)
Processing enabled package: Pike (BlackBox, Implicit, Tests, Examples)

Processing explicit instantiation support for enabled packages ...

Processing ETI support: Ifpack2
-- Ifpack2: Processing ETI / test support
-- Enabled Scalar types:        double|std::complex<double>
-- Enabled LocalOrdinal types:  int
-- Enabled GlobalOrdinal types: int|long long
-- Enabled Node types:          Kokkos::Compat::KokkosSerialWrapperNode
-- Set of enabled types, before exclusions: S={double} N={Kokkos::Compat::KokkosSerialWrapperNode} LO={int} GO={int};S={double} N={Kokkos::Compat::KokkosSerialWrapperNode} LO={int} GO={long long};S={std::complex<double>} N={Kokkos::Compat::KokkosSerialWrapperNode} LO={int} GO={int};S={std::complex<double>} N={Kokkos::Compat::KokkosSerialWrapperNode} LO={int} GO={long long}
Processing ETI support: TpetraCore
-- TpetraCore: Processing ETI / test support
-- Enabled Scalar types:        int|long long|double|std::complex<double>
-- Enabled LocalOrdinal types:  int
-- Enabled GlobalOrdinal types: int|long long
-- Enabled Node types:          Kokkos::Compat::KokkosSerialWrapperNode
-- Set of enabled types, before exclusions: S={int} LO={int} GO={int} N={Kokkos::Compat::KokkosSerialWrapperNode};S={int} LO={int} GO={long long} N={Kokkos::Compat::KokkosSerialWrapperNode};S={int} N={Kokkos::Compat::KokkosSerialWrapperNode} LO={int} GO={int};S={int} N={Kokkos::Compat::KokkosSerialWrapperNode} LO={int} GO={long long};S={long long} N={Kokkos::Compat::KokkosSerialWrapperNode} LO={int} GO={int};S={long long} N={Kokkos::Compat::KokkosSerialWrapperNode} LO={int} GO={long long};S={double} N={Kokkos::Compat::KokkosSerialWrapperNode} LO={int} GO={int};S={double} N={Kokkos::Compat::KokkosSerialWrapperNode} LO={int} GO={long long};S={std::complex<double>} N={Kokkos::Compat::KokkosSerialWrapperNode} LO={int} GO={int};S={std::complex<double>} N={Kokkos::Compat::KokkosSerialWrapperNode} LO={int} GO={long long}
Processing ETI support: KokkosKernels
-- KokkosKernels: Processing ETI / test support
-- Enabled Scalar types:       
-- Enabled LocalOrdinal types: 
-- Enabled Device types:       
-- Set of enabled types, before exclusions: 

Set up for creating a distribution ...


Finished configuring Trilinos!

-- Configuring done

/home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/PKGBUILD: line 28:  6093 Killed                  cmake .. -DTrilinos_ENABLE_ALL_OPTIONAL_PACKAGES:BOOL=ON -DTrilinos_ENABLE_ALL_PACKAGES:BOOL=ON -DTrilinos_ENABLE_COMPLEX:BOOL=ON -DTrilinos_ENABLE_Gtest:BOOL=ON -DTrilinos_ENABLE_TESTS=ON -DTPL_ENABLE_gtest:BOOL=ON -DTPL_ENABLE_MPI:BOOL=ON -DPYTHON_EXECUTABLE:PATH=/usr/bin/python2 -DCMAKE_INSTALL_PREFIX:PATH=/usr -DBUILD_SHARED_LIBS:BOOL=ON
==> ERROR: A failure occurred in build().
    Aborting...

Last edited by promach (2019-02-23 07:57:58)

Offline

#10 2019-02-19 01:39:21

loqs
Member
Registered: 2014-03-06
Posts: 17,195

Re: [REQUEST] Xyce circuit simulator

Please use code tags not quote tags for commands and their output.

/home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/PKGBUILD: line 28:  6093 Killed                  cmake .. -DTrilinos_ENABLE_ALL_OPTIONAL_PACKAGES:BOOL=ON -DTrilinos_ENABLE_ALL_PACKAGES:BOOL=ON -DTrilinos_ENABLE_COMPLEX:BOOL=ON -DTrilinos_ENABLE_Gtest:BOOL=ON -DTrilinos_ENABLE_TESTS=ON -DTPL_ENABLE_gtest:BOOL=ON -DTPL_ENABLE_MPI:BOOL=ON -DPYTHON_EXECUTABLE:PATH=/usr/bin/python2 -DCMAKE_INSTALL_PREFIX:PATH=/usr -DBUILD_SHARED_LIBS:BOOL=ON

Is their any indication in the journal why cmake was killed?

Offline

#11 2019-02-19 01:54:04

jamespharvey20
Member
Registered: 2015-06-09
Posts: 129

Re: [REQUEST] Xyce circuit simulator

[phung@archlinux trilinos]$ makepkg -s
==> Making package: trilinos-complex 12.12.1-4 (Mon 18 Feb 2019 11:41:15 PM +08)
...
Finished configuring Trilinos!

-- Configuring done

/home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/PKGBUILD: line 28:  6093 Killed                  cmake .. -DTrilinos_ENABLE_ALL_OPTIONAL_PACKAGES:BOOL=ON -DTrilinos_ENABLE_ALL_PACKAGES:BOOL=ON -DTrilinos_ENABLE_COMPLEX:BOOL=ON -DTrilinos_ENABLE_Gtest:BOOL=ON -DTrilinos_ENABLE_TESTS=ON -DTPL_ENABLE_gtest:BOOL=ON -DTPL_ENABLE_MPI:BOOL=ON -DPYTHON_EXECUTABLE:PATH=/usr/bin/python2 -DCMAKE_INSTALL_PREFIX:PATH=/usr -DBUILD_SHARED_LIBS:BOOL=ON
==> ERROR: A failure occurred in build().
    Aborting...

As loqs said, maybe "journalctl" gives a reason it was killed.  I'm betting it's because you ran out of memory.  If it wasn't because of that, and "journalctl" doesn't say, then I have no idea, unless something's off with your system, in which case using devtools to build in a chroot may help, but I doubt this is the case.

I tried it, and got past the spot you had this error.  Just before reaching "Configuring Done", "cmake" uses up to 2.4GB resident memory.  Then, it starts using more, and in my output below, by the time it shows "Finished configuring Trilinos!", it's using 4.8GB and increases to 5.1GB before cmake quits.  After "-- Configuring done", "cmake" ran near 100% CPU usage for a minute or two.

I'm going to let the parallel build go.  If it builds, I'll be happy to give you a link to download the package.  (I'm going to look into if that violates any terms, and if it does, I won't do so.)  Note you should never run a binary from someone you don't trust, and I'm not a Trusted User, so the official advice is not to use this.  It's not something I'm willing to take on as an AUR maintainer, and not something I'd be able to build future versions of.  It's already running, and I don't need that machine for anything for a while.  If it was out of memory, I'd recommend either getting more, or renting a more powerful virtual server, and perhaps destroying it after you build it, if you don't want to pay for it except for when you need to build a new version.

-- Configuring done
-- Generating done
-- Build files have been written to: /build/trilinos-complex/src/Trilinos-trilinos-release-12-12-1/build

Set up for creating a distribution ...


Finished configuring Trilinos!

-- Configuring done

-- Generating done
-- Build files have been written to: /build/trilinos-complex/src/Trilinos-trilinos-release-12-12-1/build
/usr/bin/cmake -S/build/trilinos-complex/src/Trilinos-trilinos-release-12-12-1 -B/build/trilinos-complex/src/Trilinos-trilinos-release-12-12-1/build --check-build-system CMakeFiles/Makefile.cmake 0
/usr/bin/cmake -E cmake_progress_start /build/trilinos-complex/src/Trilinos-trilinos-release-12-12-1/build/CMakeFiles /build/trilinos-complex/src/Trilinos-trilinos-release-12-12-1/build/CMakeFiles/progress.marks
make -f CMakeFiles/Makefile2 all

Offline

#12 2019-02-19 11:31:17

jamespharvey20
Member
Registered: 2015-06-09
Posts: 129

Re: [REQUEST] Xyce circuit simulator

EDIT: Link fixed to PKGBUILD

OK, here's the PKGBUILD I used: http://jamespharvey20.ddns.net/trilinos … x/PKGBUILD

Feel free to upload "trilinox-complex" it to the AUR, if community doesn't add it as an option.  Going forward, as community releases new versions, just make the same changes it makes to this one, except for keeping the current differences between them now.

And, here's a link to "trilinos-complex-12.12.1-4-x86_64.pkg.tar": http://jamespharvey20.ddns.net/trilinos … 64.pkg.tar

I won't be able to keep compiling new versions as they come out in the future, but hopefully this will get you started on Xyce.

If you do use it, other than my promise that it was built using the PKGBUILD above, I can't promise it will work properly.  As you'll see below, some tests failed that I don't think community's version fails.  Also, I'm not a Trusted User, and the official recommendation even from me is not to run any pre-compiled binaries from non-Trusted Users, but it's there if you want to use it.  Otherwise, if you need to "-j1" it and build it yourself, I think you might get by with 16GB of ram  but can't say for sure as I didn't test that, and it isn't as simple as dividing max memory usage by number of threads.

These links aren't an Arch repo or anything, so you'll just download them.



My notes about building:

LOL, so 64G w/o swap is not enough to "-j24" this.  I'm surprised, it hardlocked the system somewhere late in the build, and I had to hard reset it after about 15 minutes.  OOM killer didn't rescue me.

Around where loqs ran out of memory (77%) its memory usage starts going way up, and starts taking much longer.  On my next run with "-j10" and a swap file, it was up to 25G at the 77% point, and grew/shrunk taking up to 87G in the 90%'s.

It did finish building properly, but "check()" failed with:

The following tests FAILED:
        1786 - Phalanx_dag_manager_MPI_1 (Failed)
        1914 - MueLu_LevelWrap-Tpetra_MPI_4 (Failed)
        1929 - MueLu_ParameterListInterpreterTpetra_MPI_1 (Failed)
        1930 - MueLu_ParameterListInterpreterTpetra_MPI_4 (Failed)
        2387 - PanzerAdaptersSTK_PoissonExample-ConvTest-Order-1 (Failed)
        2388 - PanzerAdaptersSTK_PoissonExample-ConvTest-Order-2 (Failed)
        2389 - PanzerAdaptersSTK_PoissonExample-ConvTest-Order-3 (Failed)
        2390 - PanzerAdaptersSTK_PoissonExample-ConvTest-Order-4 (Failed)
        2392 - PanzerAdaptersSTK_CurlLaplacianExample-ConvTest-Order-1 (Failed)
        2397 - PanzerAdaptersSTK_PoissonInterfaceExample_2d_MPI_4-ConvTest (Failed)
        2398 - PanzerAdaptersSTK_PoissonInterfaceExample_3d_MPI_4-ConvTest (Failed)
        2482 - PyTrilinos_exLOCA_Chan_MPI_1 (Failed)
Errors while running CTest

In a separate build chroot, I'm building the community version as-is with "-j4" (without the complex option) to see if it gets these test failures as well.  Since community's PKGBUILD is setup to fail, not continue, on "check()" failures, I assume it succeeded at that time.  I'm betting the complex option introduces those test failures.

I forced the "-complex" package to be packaged despite the check() failure to give it to you, with the warning that it might be defective from its failed tests.  If it is defective with the complex option, you'd need to speak with upstream developers about that.

I ran "arch-chroot" with needed options into the build chroot that failed, and ran "makepkg --repackage --install".  It fails installing in the chroot with:

trilinos-complex: /usr/include/gtest/gtest.h exists in filesystem (owned by gtest)
trilinos-complex: /usr/lib/libgtest.so exists in filesystem (owned by gtest)

At that point, I was confused, because community's PKGBUILD doesn't have to deal with this, and we're building the same version with one more option.

It has symlinks of "libgtest.so -> libgtest.so.12", "libgtest-so.12 -> libgtest.so.12.12.1", and the actual "libgtest.so.12.12.1".

But, if you look into the official repo trilinos, it includes these include and lib files as well.  If you try to install official trilinos and gtest, pacman fails with conflicting files.  Turns out there's already an Arch bugreport open about this: https://bugs.archlinux.org/task/61454  --- So for now, you just can't have gtest installed at the same time.

It will be about 12 hours before I'll be back to post on the results from the community version that's building, on whether it has test failures as well.

Last edited by jamespharvey20 (2019-02-19 22:31:48)

Offline

#13 2019-02-20 00:13:39

jamespharvey20
Member
Registered: 2015-06-09
Posts: 129

Re: [REQUEST] Xyce circuit simulator

Community has these test failures.  (Note the current community repo PKGBUILD doesn't actually run the tests, because it runs "ctest" in the wrong directory.  That's fixed in the trunk PKGBUILD, commit 4ba10cb1.  Presumably, that hasn't been released because some tests fail, which prevents the package from being built as is.)

The following tests FAILED:
        1742 - Phalanx_dag_manager_MPI_1 (Failed)
        1869 - MueLu_LevelWrap-Tpetra_MPI_4 (Failed)
        1884 - MueLu_ParameterListInterpreterTpetra_MPI_1 (Failed)
        1885 - MueLu_ParameterListInterpreterTpetra_MPI_4 (Failed)
        2432 - PyTrilinos_exLOCA_Chan_MPI_1 (Failed)
Errors while running CTest

Community only runs 2458 tests, and "-complex" runs 2508, which is of course good, because that means upstream made complex-specific tests.

So, the "PanzerAdaptersSTK_*" tests that fail on "-complex" pass on community.  (These tests run on both, I made sure they weren't omitted in community's run.)

So, I don't know if all this means the complex option will work properly or not.

Offline

#14 2019-02-20 06:48:58

promach
Member
Registered: 2016-05-18
Posts: 96

Re: [REQUEST] Xyce circuit simulator

@jamespharvey20

Wait, why is your PKGBUILD not using the cmake options as stated in cmake invocation script for Parallel Trilinos ?

#!/bin/sh
SRCDIR=$HOME/Trilinos12.12/trilinos-12.12.1-Source
ARCHDIR=$HOME/XyceLibs/Parallel
FLAGS="-O3 -fPIC"
cmake \
-G "Unix Makefiles" \
-DCMAKE_C_COMPILER=mpicc \
-DCMAKE_CXX_COMPILER=mpic++ \
-DCMAKE_Fortran_COMPILER=mpif77 \
-DCMAKE_CXX_FLAGS="$FLAGS" \
-DCMAKE_C_FLAGS="$FLAGS" \
-DCMAKE_Fortran_FLAGS="$FLAGS" \
-DCMAKE_INSTALL_PREFIX=$ARCHDIR \
-DCMAKE_MAKE_PROGRAM="make" \
-DTrilinos_ENABLE_NOX=ON \
  -DNOX_ENABLE_LOCA=ON \
-DTrilinos_ENABLE_EpetraExt=ON \
  -DEpetraExt_BUILD_BTF=ON \
  -DEpetraExt_BUILD_EXPERIMENTAL=ON \
  -DEpetraExt_BUILD_GRAPH_REORDERINGS=ON \
-DTrilinos_ENABLE_TrilinosCouplings=ON \
-DTrilinos_ENABLE_Ifpack=ON \
-DTrilinos_ENABLE_ShyLU=ON \
-DTrilinos_ENABLE_Isorropia=ON \
-DTrilinos_ENABLE_AztecOO=ON \
-DTrilinos_ENABLE_Belos=ON \
-DTrilinos_ENABLE_Teuchos=ON \
  -DTeuchos_ENABLE_COMPLEX=ON \
-DTrilinos_ENABLE_Amesos=ON \
  -DAmesos_ENABLE_KLU=ON \
-DTrilinos_ENABLE_Sacado=ON \
-DTrilinos_ENABLE_Kokkos=OFF \
-DTrilinos_ENABLE_Zoltan=ON \
-DTrilinos_ENABLE_ALL_OPTIONAL_PACKAGES=OFF \
-DTrilinos_ENABLE_CXX11=OFF \
-DTPL_ENABLE_AMD=ON \
-DAMD_LIBRARY_DIRS="/usr/lib" \
-DTPL_AMD_INCLUDE_DIRS="/usr/include/suitesparse" \
-DTPL_ENABLE_BLAS=ON \
-DTPL_ENABLE_LAPACK=ON \
-DTPL_ENABLE_MPI=ON \
$SRCDIR

Last edited by promach (2019-02-20 06:49:47)

Offline

#15 2019-02-20 19:02:25

jamespharvey20
Member
Registered: 2015-06-09
Posts: 129

Re: [REQUEST] Xyce circuit simulator

promach wrote:

@jamespharvey20

Wait, why is your PKGBUILD not using the cmake options as stated in cmake invocation script for Parallel Trilinos ?

Ultimately, it's because I've never used Trilinos or Xyce, and probably will never need to use programs like this.  So, it's not something I can invest a lot of time in.  But, there was already the community Trilinos PKGBUILD.  With the Xyce configure error specifically calling out the need for Trilinos having complex support, I did a quick google for what was needed to compile Trilinos with it.  From Trilinos, I found all was needed was "-DTrilinos_ENABLE_COMPLEX=ON".  Usually when a package complains that another package doesn't have "XYZ" support, all that's needed is to recompile that other package with a slight tweak.  I'm not sure if I ever read through the Xyce page.  I simply took community's PKGBUILD and made the minimal modifications necessary to compile in complex support.

Whenever I need to make a modification to an official repo package, I start with what the Trusted User/maintainer has created.  They've invested a lot of time and testing to make sure it compiles and works well on Arch.  Even if I desperately needed these packages to work together, I'd still start out with the PKGBUILD I gave, and see if it made Xyce happy.

If it doesn't, and if Xyce really needs Trilinos compiled using the OpenMPI wrappers and all of those other additional options, that's outside the scope of a quick help with a single option.  If that's the case, you'll need to take my PKGBUILD as a starting point, and go from there.  It at least shows how to form an "alternate version" PKGBUILD.  Notably, you'd want to ditch their SRCDIR and ARCHDIR.  I'd probably try ditching their FLAGS, and going with native Arch flags, granted that might not work.  You'd need to look into what the AMD_LIBRARY_DIRS and AMD_INCLUDE_DIRS refer to, as that may or may not be a dependency already included in the existing PKGBUILDs.  I'd also take any options in the existing PKGBUILD's and look at adding them to Xyce's given options for Trilinos, if they didn't already exist.  Otherwise, you'd potentially be breaking any other Arch packages that depend on Trilinos, which would mean the "provides" shouldn't be in the PKGBUILD.  You'd also probably want to call it something like "trilinos-for-xyce" instead of just "trilinox-complex".

You'd also need a system to do the compilation possibly with 16G, maybe even 32G, even to just compile with "-j1".  Renting short term VPS's can be an easy solution for this.

My hope is that the given package will work just fine with Xyce.  I'd try it.

Offline

#16 2019-02-23 01:10:27

promach
Member
Registered: 2016-05-18
Posts: 96

Re: [REQUEST] Xyce circuit simulator

The following PKGBUILD built successfully with just one warning. (==> WARNING: Package contains reference to $srcdir)
Why ?

Try it out if you could not build your own trilinos-xyce package.

# Contributor: Cheng Fei Phung <feiphung@hotmail.com>
# Contributor: Alad Wenter <alad@archlinux.org>
# Contributor: Jingbei Li <i@jingbei.li>
# Contributor: Simon Pintarelli <simon.pintarelli@gmail.com>
# Contributor: Feng Wang <wanng.fenng@gmail.com>

pkgname=trilinos-xyce
pkgver=12.12.1
_pkgver=${pkgver//./-}
pkgrel=4
pkgdesc="algorithms for the solution of large-scale scientific problems"                                                                     
arch=('x86_64')
url="http://trilinos.org"
license=('LGPL3')
depends=('lapack' 'openmpi' 'python2' 'boost' 'netcdf' 'libmatio' 'libx11')                                                                  
makedepends=('python2-numpy' 'swig' 'gcc-fortran' 'perl' 'blas' 'cmake' 'gtest' 'doxygen')
checkdepends=('cmake')
conflicts=('trilinos')
provides=('trilinos=${pkgver}')
source=("https://github.com/trilinos/Trilinos/archive/trilinos-release-$_pkgver.tar.gz")                                                     
sha256sums=('5474c5329c6309224a7e1726cf6f0d855025b2042959e4e2be2748bd6bb49e18')                                                              

prepare() {
    # https://github.com/trilinos/Trilinos/issues/862#issuecomment-365852261                                                                 
    find Trilinos-trilinos-release-"$_pkgver" -name "*.py" -exec \
    	sed -i '1s#\(/usr/bin/env \|/usr/bin/\)python[2-3]*#\1python2#' {} \;                                                                
}

build() {
    cd Trilinos-trilinos-release-"$_pkgver"
    mkdir -p build
    cd build
	
	export FLAGS="-O3 -fPIC"

    cmake .. \
		-G "Unix Makefiles" \
		-DCMAKE_C_COMPILER=mpicc \
		-DCMAKE_CXX_COMPILER=mpic++ \
		-DCMAKE_Fortran_COMPILER=mpif77 \
		-DCMAKE_CXX_FLAGS="$FLAGS" \
		-DCMAKE_C_FLAGS="$FLAGS" \
		-DCMAKE_Fortran_FLAGS="$FLAGS" \
		-DCMAKE_INSTALL_PREFIX=$ARCHDIR \
		-DCMAKE_MAKE_PROGRAM="make" \
		-DTrilinos_ENABLE_NOX=ON \
		-DNOX_ENABLE_LOCA=ON \
		-DTrilinos_ENABLE_EpetraExt=ON \
		-DEpetraExt_BUILD_BTF=ON \
		-DEpetraExt_BUILD_EXPERIMENTAL=ON \
		-DEpetraExt_BUILD_GRAPH_REORDERINGS=ON \
		-DTrilinos_ENABLE_TrilinosCouplings=ON \
		-DTrilinos_ENABLE_Ifpack=ON \
		-DTrilinos_ENABLE_ShyLU=ON \
		-DTrilinos_ENABLE_Isorropia=ON \
		-DTrilinos_ENABLE_AztecOO=ON \
		-DTrilinos_ENABLE_Belos=ON \
		-DTrilinos_ENABLE_Teuchos=ON \
		-DTeuchos_ENABLE_COMPLEX=ON \
		-DTrilinos_ENABLE_Amesos=ON \
		-DAmesos_ENABLE_KLU=ON \
		-DTrilinos_ENABLE_Sacado=ON \
		-DTrilinos_ENABLE_Kokkos=OFF \
		-DTrilinos_ENABLE_Zoltan=ON \
		-DTrilinos_ENABLE_ALL_OPTIONAL_PACKAGES=OFF \
		-DTrilinos_ENABLE_CXX11=OFF \
		-DTPL_ENABLE_AMD=ON \
		-DAMD_LIBRARY_DIRS="/usr/lib" \
		-DTPL_AMD_INCLUDE_DIRS="/usr/include/suitesparse" \
		-DTPL_ENABLE_BLAS=ON \
		-DTPL_ENABLE_LAPACK=ON \
		-DTPL_ENABLE_MPI=ON \
		
    make -j1 VERBOSE=1
}

check() {
    cd Trilinos-trilinos-release-"$_pkgver"/build
    ctest
}

package() {
    cd Trilinos-trilinos-release-"$_pkgver"/build
    make DESTDIR="$pkgdir" install
}
[phung@archlinux trilinos]$ grep -R "$(pwd)/src" pkg/
Binary file pkg/trilinos-xyce/lib/libifpack.a matches
Binary file pkg/trilinos-xyce/lib/libtrilinoscouplings.a matches
Binary file pkg/trilinos-xyce/lib/libloca.a matches
Binary file pkg/trilinos-xyce/lib/libepetra.a matches
Binary file pkg/trilinos-xyce/lib/libteuchosparameterlist.a matches
Binary file pkg/trilinos-xyce/lib/liblocalapack.a matches
Binary file pkg/trilinos-xyce/lib/libteuchosremainder.a matches
Binary file pkg/trilinos-xyce/lib/libshylu.a matches
Binary file pkg/trilinos-xyce/lib/libaztecoo.a matches
Binary file pkg/trilinos-xyce/lib/libteuchoscomm.a matches
Binary file pkg/trilinos-xyce/lib/libnoxepetra.a matches
Binary file pkg/trilinos-xyce/lib/libnox.a matches
Binary file pkg/trilinos-xyce/lib/libisorropia.a matches
Binary file pkg/trilinos-xyce/lib/libteuchoscore.a matches
Binary file pkg/trilinos-xyce/lib/libepetraext.a matches
Binary file pkg/trilinos-xyce/lib/libamesos.a matches
grep: pkg/trilinos-xyce/lib/cmake/tribits/doc/developers_guide/TribitsBuildReference.html: No such file or directory
Binary file pkg/trilinos-xyce/lib/libtriutils.a matches
Binary file pkg/trilinos-xyce/lib/liblocaepetra.a matches
Binary file pkg/trilinos-xyce/lib/libteuchosnumerics.a matches
Binary file pkg/trilinos-xyce/lib/libnoxlapack.a matches
Binary file pkg/trilinos-xyce/lib/libbelos.a matches
Binary file pkg/trilinos-xyce/lib/libbelosepetra.a matches
Binary file pkg/trilinos-xyce/lib/libzoltan.a matches
[phung@archlinux trilinos]$ 
[/quote]

[quote]
==> Starting check()...
Test project /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/src/Trilinos-trilinos-release-12-12-1/build
No tests were found!!!
==> Entering fakeroot environment...
==> Starting package()...
[  3%] Built target teuchoscore
[ 12%] Built target trilinosss
[ 12%] Built target teuchosremainder
[ 29%] Built target zoltan
[ 34%] Built target teuchosparameterlist
[ 35%] Built target teuchoscomm
[ 37%] Built target teuchosnumerics
[ 37%] Built target sacado
[ 44%] Built target epetra
[ 48%] Built target triutils
[ 55%] Built target aztecoo
[ 63%] Built target epetraext
[ 63%] Built target belos
[ 63%] Built target amesos
[ 65%] Built target isorropia
[ 66%] Built target belosepetra
[ 67%] Built target isorropia_test_utils
[ 73%] Built target ifpack
[ 75%] Built target shylu
[ 81%] Built target nox
[ 82%] Built target noxlapack
[ 84%] Built target noxepetra
[ 96%] Built target loca
[ 96%] Built target localapack
[ 99%] Built target locaepetra
[100%] Built target trilinoscouplings
Install the project...
-- Install configuration: "RELEASE"
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Trilinos_version.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/Trilinos/TrilinosConfig.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Makefile.export.Trilinos
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/Trilinos/TrilinosConfigVersion.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/TrilinosConfig.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/TriBITS.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/TriBITSConfig.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/xsdk
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/xsdk/XSDKDefaults.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/doc
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/doc/utils
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/doc/utils/gen_doc_utils.sh
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/doc/developers_guide
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/doc/developers_guide/TribitsDevelopersGuide.rst
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/doc/developers_guide/UtilsMacroFunctionDocTemplate.rst
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/doc/developers_guide/TribitsBuildReference.html
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/doc/developers_guide/rst2latex.tex
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/doc/developers_guide/ExtraReposList.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/doc/developers_guide/.gitignore
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/doc/developers_guide/scripts
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/doc/developers_guide/scripts/dummy_test_commit.sh
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/doc/developers_guide/generate-dev-guide.sh
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/doc/developers_guide/TribitsMacroFunctionDocTemplate.rst
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/doc/developers_guide/README
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/doc/developers_guide/ReducedMockTrilinosOutput
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/doc/developers_guide/ReducedMockTrilinosOutput/EnableThyra_EnableTests_EnableBoost_ST_RequiredOnly.txt
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/doc/developers_guide/ReducedMockTrilinosOutput/EnableThyra_EnableTests.txt
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/doc/developers_guide/ReducedMockTrilinosOutput/EnableEpetra_EnableRTOp_DisableTeuchos_DisableEnabledFwdDepPackages.txt
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/doc/developers_guide/ReducedMockTrilinosOutput/EnableThyra_DisableEpetra_EnableTests.txt
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/doc/developers_guide/ReducedMockTrilinosOutput/EnableAllPackages.txt
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/doc/developers_guide/ReducedMockTrilinosOutput/ExpectedDependencies.txt
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/doc/developers_guide/ReducedMockTrilinosOutput/EnableThyra_EnableTests_EnableBoost_ST.txt
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/doc/developers_guide/ReducedMockTrilinosOutput/EnableEpetra_EnableRTOp_DisableTeuchos.txt
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/doc/developers_guide/ReducedMockTrilinosOutput/NoEnables.txt
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/doc/developers_guide/Makefile
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/doc/.gitignore
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/doc/build_docs.sh
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/doc/build_ref
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/doc/build_ref/TribitsBuildReferenceTemplate.rst
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/doc/build_ref/create-project-build-ref.py
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/doc/build_ref/TribitsBuildReferenceBody.rst
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/doc/build_ref/.gitignore
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/doc/build_ref/create-build-ref.sh
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/doc/build_ref/README
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/doc/build_ref/Makefile
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/doc/README.DEPENDENCIES
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/doc/publish_docs.sh
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/README.DIRECTORY_CONTENTS.rst
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/snapshot_tribits.py
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/dashboard_driver
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/dashboard_driver/CTestCustom.cmake.in
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/dashboard_driver/tdd_driver.py
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/dashboard_driver/TribitsDriverDashboard.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/dashboard_driver/LocateCTestAndRunScript.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/dashboard_driver/TribitsDriverCMakeLists.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/dashboard_driver/TribitsDriverSupport.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/ReleaseNotes.txt
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/ci_support
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/ci_support/clone_extra_repos.py
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/ci_support/filter-packages-list.py
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/ci_support/is_checkin_tested_commit.py
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/ci_support/get-tribits-packages-from-files-list.py
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/ci_support/CheckinTest.py
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/ci_support/TribitsStripCommentsFromCMakeCacheFile.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/ci_support/FindGeneralScriptSupport.py
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/ci_support/TribitsDumpDepsXmlScript.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/ci_support/checkin-test.py
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/ci_support/CDashQueryPassFail.py
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/ci_support/TribitsDependencies.py
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/ci_support/TribitsDumpXmlDependenciesFiles.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/ci_support/CheckinTestConstants.py
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/ci_support/get-tribits-packages-from-last-tests-failed.py
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/ci_support/dump-package-dep-table.py
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/ci_support/TribitsGetExtraReposForCheckinTest.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/ci_support/TribitsPackageFilePathUtils.py
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/ci_support/TribitsPackageTestNameUtils.py
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/Version.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/utils
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/utils/ParseVariableArguments.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/utils/AppendGlob.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/utils/Join.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/utils/NinjaMakefileCommon.make
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/utils/GetCurrentListDir.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/utils/RemoveGlobalDuplicates.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/utils/AdvancedSet.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/utils/AppendGlobalSet.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/utils/Split.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/utils/UnitTestHelpers.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/utils/PrependCmndlineArgs.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/utils/CombinedOption.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/utils/AppendStringVar.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/utils/MultilineSet.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/utils/PrintNonemptyVarWithSpaces.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/utils/AddSubdirectories.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/utils/NinjaMakefile.in
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/utils/TimingUtils.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/utils/MessageWrapper.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/utils/TribitsGetCategoriesString.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/utils/SetDefault.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/utils/DriveAdvancedTest.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/utils/SetAndIncDirs.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/utils/CMakeOverrides.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/utils/ConcatStrings.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/utils/FindProgramPlus.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/utils/GlobalSet.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/utils/SetCacheOnOffEmpty.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/utils/PrependSet.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/utils/DualScopePrependCmndlineArgs.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/utils/AppendStringVarWithSep.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/utils/GenerateNinjaMakefiles.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/utils/CMakeBuildTypesList.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/utils/AppendSet.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/utils/GetLastDirName.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/utils/PrintVar.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/utils/PrependGlobalSet.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/utils/DualScopeAppendCmndlineArgs.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/utils/FindListElement.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/utils/AssertDefined.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/utils/AssertAndTouchDefined.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/utils/AppendCmndlineArgs.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/utils/SetNotFound.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/utils/GlobalNullSet.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/utils/PrintNonemptyVar.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/utils/SetDefaultAndFromEnv.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/utils/DualScopeSet.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/utils/AdvancedOption.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/config_tests
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/config_tests/MathLibraryNeeded.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/config_tests/BLASMangling.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/config_tests/FiniteValue.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/config_tests/blasmangle
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/config_tests/blasmangle/blasmangle.c
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/config_tests/blasmangle/CMakeLists.txt
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/config_tests/FortranMangling.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/config_tests/fmangle
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/config_tests/fmangle/fmangle.f
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/config_tests/fmangle/cmangle.c
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/config_tests/fmangle/CMakeLists.txt
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/std_tpls
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/std_tpls/FindTPLCUDA.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/std_tpls/FindTPLMPI.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/installation
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/installation/TribitsPackageConfigTemplate.cmake.in
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/installation/TribitsInstallationTestingMacros.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/installation/TribitsPackageConfigTemplate.export.in
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/installation/TribitsProjectConfigTemplate.cmake.in
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/installation/TribitsProjectConfigTemplate.export.in
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/installation/TribitsConfigInclude.cmake.in
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/package_arch
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/package_arch/TribitsSetupBasicCompileLinkFlags.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/package_arch/TribitsAddTest.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/package_arch/TribitsSetupStrongCompileWarnings.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/package_arch/TribitsETISupport.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/package_arch/TribitsBLASMangling.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/package_arch/TribitsIncludeDirectories.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/package_arch/TribitsAddAdvancedTest.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/package_arch/TribitsTestCategories.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/package_arch/TribitsConfigureCTestCustom.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/package_arch/TribitsAddTestHelpers.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/package_arch/TribitsListHelpers.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/package_arch/TribitsCreateClientTemplateHeaders.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/package_arch/TribitsAddExecutable.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/package_arch/TribitsCMakePolicies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/package_arch/TribitsCommonArgsHelpers.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/package_arch/TribitsConstants.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/package_arch/TribitsSetupMPI.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/package_arch/TribitsFortranMangling.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/package_arch/TribitsPackageSetupCompilerFlags.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/package_arch/TribitsProcessTplsLists.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/package_arch/TribitsCopyFilesToBinaryDir.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/package_arch/TribitsHostType.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/package_arch/TribitsSubPackageMacros.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/package_arch/TribitsProcessPackagesAndDirsLists.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/package_arch/TribitsSortListAccordingToMasterList.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/package_arch/TribitsAddExecutableTestHelpers.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/package_arch/TribitsAddAdvancedTestHelpers.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/package_arch/Tribits_version.h.in
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/package_arch/TribitsProcessEnabledTpl.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/package_arch/TribitsTplFindIncludeDirsAndLibraries.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/package_arch/TribitsAddExecutableAndTest.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/package_arch/TribitsWriteClientExportFiles.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/package_arch/TribitsProject.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/package_arch/TribitsInstallHeaders.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/package_arch/TribitsProcessExtraRepositoriesList.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/package_arch/TribitsAdjustPackageEnables.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/package_arch/TribitsProjectImpl.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/package_arch/TribitsCXX11Support.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/package_arch/TribitsFindPythonInterp.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/package_arch/TribitsFindMostRecentFileTimestamp.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/package_arch/TribitsGlobalMacros.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/package_arch/TribitsLibraryMacros.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/package_arch/TribitsAddOptionAndDefine.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/package_arch/TribitsGeneralMacros.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/package_arch/TribitsTplDeclareLibraries.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/package_arch/TribitsVerbosePrintVar.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/package_arch/TribitsPackageMacros.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/core/package_arch/TribitsDefineStandardCompileVars.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/ctest_driver
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/ctest_driver/TribitsAddDashboardTarget.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/ctest_driver/makeCMakeCacheFile.sh
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/ctest_driver/TribitsCTestDriverCoreHelpers.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/ctest_driver/TribitsCTestDriverCore.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/ctest_driver/dump-cdash-deps-xml-file.py
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/ctest_driver/README
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/ctest_driver/experimental_build_test.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/python_utils
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/python_utils/tree.py
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/python_utils/git-config-alias.sh
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/python_utils/gitdist
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/python_utils/SnapshotDir.py
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/python_utils/.gitignore
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/python_utils/GeneralScriptSupport.py
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/python_utils/generate-docutils-output.py
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/python_utils/mailmsg.py
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/python_utils/CMakeBinaries.py
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/python_utils/CMakeVersions.py
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/python_utils/mockprogram.py
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/python_utils/GenerateDocUtilsOutput.py
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/python_utils/extract_rst_cmake_doc.py
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/python_utils/snapshot-dir.py
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/python_utils/gitdist.py
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/python_utils/download-cmake.py
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/python_utils/generic-looping-demon.py
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/common_tpls
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/common_tpls/FindTPLPnetcdf.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/common_tpls/FindTPLBoost.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/common_tpls/utils
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/common_tpls/utils/AddImportedLibrary.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/common_tpls/utils/ParseLibraryList.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/common_tpls/utils/AddPackageDependency.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/common_tpls/FindTPLBinUtils.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/common_tpls/FindTPLBLAS.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/common_tpls/FindTPLCGNS.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/common_tpls/FindTPLHYPRE.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/common_tpls/FindTPLHDF5.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/common_tpls/FindTPLNetcdf.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/common_tpls/FindTPLPETSC.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/common_tpls/find_modules
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/common_tpls/find_modules/FindNetCDF.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/common_tpls/find_modules/FindHDF5.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/common_tpls/find_modules/FindCGNS.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/common_tpls/find_modules/FindPNetCDF.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/common_tpls/FindTPLLAPACK.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/devtools_install
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/devtools_install/install-cmake.py
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/devtools_install/install-git.py
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/devtools_install/install_devtools.py
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/devtools_install/install-gcc.py
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/devtools_install/install-autoconf.py
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/devtools_install/install-openmpi.py
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/devtools_install/FindGeneralScriptSupport.py
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/devtools_install/load_dev_env.sh.in
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/devtools_install/install-mpich.py
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/devtools_install/InstallProgramDriver.py
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/devtools_install/load_dev_env.csh.in
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/win_interface
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/win_interface/include
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/win_interface/include/winprocess.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/win_interface/include/strings.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/win_interface/include/winmath.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/win_interface/include/unistd.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/win_interface/include/gettimeofday.c
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/tpls
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/tpls/FindTPLCUDA.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/tpls/FindTPLMPI.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/tpls/FindTPLPETSC.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/tpls/TribitsDeprecatedTplFindModInclude.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/Copyright.txt
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/ReducedMockTrilinos
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/ReducedMockTrilinos/TPLsList.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/ReducedMockTrilinos/PackagesList.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/ReducedMockTrilinos/ProjectName.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/ReducedMockTrilinos/packages
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/ReducedMockTrilinos/packages/rtop
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/ReducedMockTrilinos/packages/rtop/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/ReducedMockTrilinos/packages/rtop/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/ReducedMockTrilinos/packages/epetraext
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/ReducedMockTrilinos/packages/epetraext/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/ReducedMockTrilinos/packages/epetraext/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/ReducedMockTrilinos/packages/triutils
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/ReducedMockTrilinos/packages/triutils/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/ReducedMockTrilinos/packages/triutils/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/ReducedMockTrilinos/packages/epetra
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/ReducedMockTrilinos/packages/epetra/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/ReducedMockTrilinos/packages/epetra/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/ReducedMockTrilinos/packages/teuchos
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/ReducedMockTrilinos/packages/teuchos/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/ReducedMockTrilinos/packages/teuchos/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/ReducedMockTrilinos/packages/thyra
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/ReducedMockTrilinos/packages/thyra/adapters
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/ReducedMockTrilinos/packages/thyra/adapters/epetraext
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/ReducedMockTrilinos/packages/thyra/adapters/epetraext/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/ReducedMockTrilinos/packages/thyra/adapters/epetraext/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/ReducedMockTrilinos/packages/thyra/adapters/epetra
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/ReducedMockTrilinos/packages/thyra/adapters/epetra/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/ReducedMockTrilinos/packages/thyra/adapters/epetra/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/ReducedMockTrilinos/packages/thyra/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/ReducedMockTrilinos/packages/thyra/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/ReducedMockTrilinos/packages/thyra/crazy_stuff
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/ReducedMockTrilinos/packages/thyra/crazy_stuff/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/ReducedMockTrilinos/packages/thyra/crazy_stuff/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/ReducedMockTrilinos/packages/thyra/good_stuff
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/ReducedMockTrilinos/packages/thyra/good_stuff/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/ReducedMockTrilinos/packages/thyra/good_stuff/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/ReducedMockTrilinos/packages/thyra/src
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/ReducedMockTrilinos/packages/thyra/src/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/ReducedMockTrilinos/packages/thyra/src/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/ReducedMockTrilinos/CMakeLists.txt
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProjectAddons
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProjectAddons/TPLsList.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProjectAddons/PackagesList.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProjectAddons/ProjectName.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProjectAddons/Version.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProjectAddons/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProjectAddons/cmake/ExtraRepositoriesList.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProjectAddons/packages
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProjectAddons/packages/addon1
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProjectAddons/packages/addon1/tests
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProjectAddons/packages/addon1/tests/Addon1_test.cpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProjectAddons/packages/addon1/tests/CMakeLists.txt
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProjectAddons/packages/addon1/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProjectAddons/packages/addon1/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProjectAddons/packages/addon1/CMakeLists.txt
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProjectAddons/packages/addon1/src
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProjectAddons/packages/addon1/src/Addon1.cpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProjectAddons/packages/addon1/src/Addon1.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProjectAddons/packages/addon1/src/CMakeLists.txt
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProjectAddons/README
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProjectAddons/CMakeLists.txt
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/.gitignore
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/TPLsList.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/CTestConfig.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/PackagesList.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/ProjectName.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/Version.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/project-checkin-test-config.py
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/cmake/ctest
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/cmake/ctest/CTestCustom.cmake.in
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/cmake/ctest/general_gcc
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/cmake/ctest/general_gcc/ctest_serial_debug.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/cmake/ctest/TribitsExProjCTestDriver.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/cmake/CallbackSetupExtraOptions.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/cmake/ExtraRepositoriesList.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/cmake/CallbackDefineRepositoryPackaging.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/cmake/tpls
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/cmake/tpls/FindTPLSimpleTpl.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/cmake/tpls/FindTPLHeaderOnlyTpl.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/cmake/CallbackDefineProjectPackaging.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/wrap_external
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/wrap_external/run_external_func.cpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/wrap_external/external_func
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/wrap_external/external_func/configure.py
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/wrap_external/external_func/external_func.cpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/wrap_external/external_func/external_func.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/wrap_external/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/wrap_external/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/wrap_external/cmake/SimpleCxx_config.h.in
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/wrap_external/CMakeLists.txt
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/simple_cxx
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/simple_cxx/test
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/simple_cxx/test/SimpleCxx_HelloWorld_Tests.cpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/simple_cxx/test/CMakeLists.txt
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/simple_cxx/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/simple_cxx/cmake/CheckFor__int64.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/simple_cxx/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/simple_cxx/cmake/SimpleCxx_config.h.in
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/simple_cxx/CMakeLists.txt
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/simple_cxx/src
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/simple_cxx/src/SimpleCxx_HelloWorld_Prog.cpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/simple_cxx/src/SimpleCxx_HelloWorld.cpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/simple_cxx/src/SimpleCxx_HelloWorld.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/simple_cxx/src/CMakeLists.txt
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/with_subpackages
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/with_subpackages/b
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/with_subpackages/b/tests
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/with_subpackages/b/tests/b_mixed_lang_test.cpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/with_subpackages/b/tests/testlib
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/with_subpackages/b/tests/testlib/b_test_utils.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/with_subpackages/b/tests/testlib/b_mixed_lang.cpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/with_subpackages/b/tests/testlib/b_mixed_lang.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/with_subpackages/b/tests/testlib/b_test_utils.cpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/with_subpackages/b/tests/testlib/ShowLibErrors.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/with_subpackages/b/tests/testlib/CMakeLists.txt
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/with_subpackages/b/tests/ShowLibErrors.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/with_subpackages/b/tests/b_test.cpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/with_subpackages/b/tests/CMakeLists.txt
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/with_subpackages/b/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/with_subpackages/b/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/with_subpackages/b/cmake/WithSubpackagesB_config.h.in
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/with_subpackages/b/CMakeLists.txt
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/with_subpackages/b/src
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/with_subpackages/b/src/B.cpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/with_subpackages/b/src/B.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/with_subpackages/b/src/ShowLibErrors.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/with_subpackages/b/src/CMakeLists.txt
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/with_subpackages/c
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/with_subpackages/c/tests
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/with_subpackages/c/tests/c_b_mixed_lang.cpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/with_subpackages/c/tests/c_test.cpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/with_subpackages/c/tests/test_of_c_b_mixed_lang.cpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/with_subpackages/c/tests/CMakeLists.txt
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/with_subpackages/c/tests/c_b_mixed_lang.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/with_subpackages/c/wsp_c
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/with_subpackages/c/wsp_c/C.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/with_subpackages/c/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/with_subpackages/c/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/with_subpackages/c/c_util.cpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/with_subpackages/c/ShowLibErrors.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/with_subpackages/c/C.cpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/with_subpackages/c/CMakeLists.txt
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/with_subpackages/a
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/with_subpackages/a/A.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/with_subpackages/a/A.cpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/with_subpackages/a/tests
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/with_subpackages/a/tests/CMakeLists.txt
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/with_subpackages/a/tests/a_test.cpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/with_subpackages/a/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/with_subpackages/a/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/with_subpackages/a/CMakeLists.txt
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/with_subpackages/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/with_subpackages/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/with_subpackages/CMakeLists.txt
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/mixed_lang
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/mixed_lang/test
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/mixed_lang/test/tstRay_Tracer.cc
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/mixed_lang/test/CMakeLists.txt
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/mixed_lang/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/mixed_lang/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/mixed_lang/cmake/MixedLang_config.h.in
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/mixed_lang/CMakeLists.txt
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/mixed_lang/src
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/mixed_lang/src/MixedLang.cpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/mixed_lang/src/Ray_Tracer.hh
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/mixed_lang/src/Ray_Tracer.cc
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/mixed_lang/src/Ray.hh
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/mixed_lang/src/Parameters.f90
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/mixed_lang/src/Ray_Tracer_Kernel.f90
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/mixed_lang/src/Vector_Lite.hh
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/mixed_lang/src/CMakeLists.txt
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/packages/mixed_lang/src/MixedLang.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/README
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/CMakeLists.txt
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/LICENSE
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/Copyright.txt
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/sampleScripts
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/sampleScripts/linux-serial-debug.sh
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleProject/sampleScripts/linux-mpi-debug.sh
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsHelloWorld
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsHelloWorld/TPLsList.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsHelloWorld/PackagesList.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsHelloWorld/ProjectName.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsHelloWorld/hello_world
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsHelloWorld/hello_world/hello_world_lib.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsHelloWorld/hello_world/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsHelloWorld/hello_world/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsHelloWorld/hello_world/hello_world_unit_tests.cpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsHelloWorld/hello_world/hello_world_lib.cpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsHelloWorld/hello_world/CMakeLists.txt
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsHelloWorld/hello_world/hello_world_main.cpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsHelloWorld/README
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsHelloWorld/CMakeLists.txt
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MixedSharedStaticLibs
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MixedSharedStaticLibs/TPLsList.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MixedSharedStaticLibs/static_only
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MixedSharedStaticLibs/static_only/StaticOnly.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MixedSharedStaticLibs/static_only/StaticOnly.cpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MixedSharedStaticLibs/static_only/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MixedSharedStaticLibs/static_only/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MixedSharedStaticLibs/static_only/CMakeLists.txt
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MixedSharedStaticLibs/shared_only
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MixedSharedStaticLibs/shared_only/test
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MixedSharedStaticLibs/shared_only/test/SharedOnly_test.cpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MixedSharedStaticLibs/shared_only/test/CMakeLists.txt
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MixedSharedStaticLibs/shared_only/SharedOnly.cpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MixedSharedStaticLibs/shared_only/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MixedSharedStaticLibs/shared_only/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MixedSharedStaticLibs/shared_only/CMakeLists.txt
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MixedSharedStaticLibs/shared_only/SharedOnly.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MixedSharedStaticLibs/PackagesList.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MixedSharedStaticLibs/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MixedSharedStaticLibs/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MixedSharedStaticLibs/README
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MixedSharedStaticLibs/static_exec
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MixedSharedStaticLibs/static_exec/test
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MixedSharedStaticLibs/static_exec/test/StaticOnly_test.cpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MixedSharedStaticLibs/static_exec/test/CMakeLists.txt
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MixedSharedStaticLibs/static_exec/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MixedSharedStaticLibs/static_exec/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MixedSharedStaticLibs/static_exec/CMakeLists.txt
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MixedSharedStaticLibs/CMakeLists.txt
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TargetDefinesPkg
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TargetDefinesPkg/test
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TargetDefinesPkg/test/TargetDefinesPkg_test.cpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TargetDefinesPkg/test/deprecated_defines
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TargetDefinesPkg/test/deprecated_defines/CMakeLists.txt
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TargetDefinesPkg/test/CMakeLists.txt
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TargetDefinesPkg/TargetDefinesPkg.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TargetDefinesPkg/TPLsList.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TargetDefinesPkg/PackagesList.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TargetDefinesPkg/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TargetDefinesPkg/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TargetDefinesPkg/TargetDefinesPkg.cpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TargetDefinesPkg/README
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TargetDefinesPkg/CMakeLists.txt
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/RawHelloWorld
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/RawHelloWorld/hello_world
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/RawHelloWorld/hello_world/hello_world_lib.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/RawHelloWorld/hello_world/hello_world_unit_tests.cpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/RawHelloWorld/hello_world/hello_world_lib.cpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/RawHelloWorld/hello_world/CMakeLists.txt
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/RawHelloWorld/hello_world/hello_world_main.cpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/RawHelloWorld/README
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/RawHelloWorld/CMakeLists.txt
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleMetaProject
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleMetaProject/TPLsList.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleMetaProject/PackagesList.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleMetaProject/ProjectName.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleMetaProject/Version.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleMetaProject/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleMetaProject/cmake/ExtraRepositoriesList.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleMetaProject/README
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/TribitsExampleMetaProject/CMakeLists.txt
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/tpls
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/tpls/HeaderOnlyTpl
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/tpls/HeaderOnlyTpl/HeaderOnlyTpl_stuff.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/tpls/SimpleTpl
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/tpls/SimpleTpl/SimpleTpl.cpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/tpls/SimpleTpl/SimpleTpl.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/tpls/SimpleTpl/CMakeLists.txt
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/InsertedPkg
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/InsertedPkg/test
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/InsertedPkg/test/InsertedPkg_test.cpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/InsertedPkg/test/CMakeLists.txt
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/InsertedPkg/InsertedPkg.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/InsertedPkg/InsertedPkg.cpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/InsertedPkg/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/InsertedPkg/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/InsertedPkg/CMakeLists.txt
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/extraRepoOnePackage
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/extraRepoOnePackage/TPLsList.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/extraRepoOnePackage/PackagesList.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/extraRepoOnePackage/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/extraRepoOnePackage/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/preCopyrightTrilinos
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/preCopyrightTrilinos/teko
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/preCopyrightTrilinos/teko/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/preCopyrightTrilinos/teko/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/preCopyrightTrilinos/stalix
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/preCopyrightTrilinos/stalix/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/preCopyrightTrilinos/stalix/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/preCopyrightTrilinos/TPLsList.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/preCopyrightTrilinos/PackagesList.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/extraTrilinosRepo
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/extraTrilinosRepo/TPLsList.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/extraTrilinosRepo/PackagesList.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/extraTrilinosRepo/extrapack
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/extraTrilinosRepo/extrapack/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/extraTrilinosRepo/extrapack/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/preRepoOnePackage
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/preRepoOnePackage/TPLsList.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/preRepoOnePackage/PackagesList.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/preRepoOnePackage/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/preRepoOnePackage/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/extraRepoOnePackageThreeSubpackages
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/extraRepoOnePackageThreeSubpackages/sp2
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/extraRepoOnePackageThreeSubpackages/sp2/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/extraRepoOnePackageThreeSubpackages/sp2/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/extraRepoOnePackageThreeSubpackages/TPLsList.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/extraRepoOnePackageThreeSubpackages/sp3
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/extraRepoOnePackageThreeSubpackages/sp3/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/extraRepoOnePackageThreeSubpackages/sp3/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/extraRepoOnePackageThreeSubpackages/PackagesList.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/extraRepoOnePackageThreeSubpackages/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/extraRepoOnePackageThreeSubpackages/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/extraRepoOnePackageThreeSubpackages/sp1
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/extraRepoOnePackageThreeSubpackages/sp1/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/extraRepoOnePackageThreeSubpackages/sp1/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/TPLsList.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/CTestConfig.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/PackagesList.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/ProjectName.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/Version.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/cmake/ProjectDependenciesSetup.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/cmake/NativeRepositoriesList1.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/cmake/Reduced_preCopyrightTrilinos_PackagesList.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/cmake/RepositoryDependenciesSetup.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/cmake/CallbackSetupExtraOptions.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/cmake/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/cmake/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/cmake/ExtraRepositoriesList.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/galeri
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/galeri/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/galeri/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/ifpack
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/ifpack/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/ifpack/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/stokhos
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/stokhos/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/stokhos/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/amesos
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/amesos/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/amesos/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/tpetra
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/tpetra/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/tpetra/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/stratimikos
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/stratimikos/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/stratimikos/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/rtop
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/rtop/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/rtop/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/epetraext
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/epetraext/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/epetraext/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/triutils
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/triutils/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/triutils/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/intrepid
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/intrepid/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/intrepid/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/belos
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/belos/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/belos/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/isorropia
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/isorropia/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/isorropia/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/ml
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/ml/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/ml/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/zoltan
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/zoltan/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/zoltan/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/epetra
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/epetra/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/epetra/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/sacado
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/sacado/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/sacado/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/aztecoo
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/aztecoo/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/aztecoo/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/phalanx
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/phalanx/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/phalanx/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/TriKota
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/TriKota/README
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/teuchos
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/teuchos/extrastuff
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/teuchos/extrastuff/stuff.txt
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/teuchos/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/teuchos/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/shards
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/shards/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/shards/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/rbgen
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/rbgen/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/rbgen/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/thyra
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/thyra/adapters
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/thyra/adapters/tpetra
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/thyra/adapters/tpetra/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/thyra/adapters/tpetra/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/thyra/adapters/epetraext
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/thyra/adapters/epetraext/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/thyra/adapters/epetraext/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/thyra/adapters/epetra
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/thyra/adapters/epetra/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/thyra/adapters/epetra/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/thyra/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/thyra/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/thyra/src
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/thyra/src/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/thyra/src/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/thyra/src/crazy_stuff
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/thyra/src/crazy_stuff/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/thyra/src/crazy_stuff/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/thyra/src/good_stuff
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/thyra/src/good_stuff/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/thyra/src/good_stuff/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/panzer
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/panzer/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/packages/panzer/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/extraRepoTwoPackages
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/extraRepoTwoPackages/package2
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/extraRepoTwoPackages/package2/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/extraRepoTwoPackages/package2/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/extraRepoTwoPackages/TPLsList.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/extraRepoTwoPackages/PackagesList.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/extraRepoTwoPackages/package1
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/extraRepoTwoPackages/package1/cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/extraRepoTwoPackages/package1/cmake/Dependencies.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/CMakeLists.txt
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/tribits/examples/MockTrilinos/Copyright.txt
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/Teuchos/TeuchosConfig.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Makefile.export.Teuchos
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/TeuchosCore/TeuchosCoreConfig.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/TeuchosCore/TeuchosCoreTargets.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/TeuchosCore/TeuchosCoreTargets-release.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Makefile.export.TeuchosCore
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/libteuchoscore.a
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_config.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/TeuchosCore_config.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_DLLExportMacro.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_F77_wrappers.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/TeuchosCore_ConfigDefs.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_AbstractFactory.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_AbstractFactoryStd.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_Array.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_ArrayConversions.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_ArrayRCP.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_ArrayRCPDecl.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_ArrayView.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_ArrayViewDecl.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_Assert.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_CWrapperSupport_Cpp.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_CommandLineProcessor.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_CompileTimeAssert.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_CompilerCodeTweakMacros.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_ConfigDefs.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_ConstNonconstObjectContainer.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_ConstTypeTraits.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_DebugDefaultAsserts.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_Describable.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_Details_Allocator.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_ENull.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_Exceptions.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_ExplicitInstantiationHelpers.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_FancyOStream.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_FilteredIterator.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_GlobalMPISession.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_HashSet.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_HashUtils.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_Hashtable.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_LabeledObject.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_LocalTestingHelpers.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_NullIteratorTraits.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_OpaqueWrapper.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_OrdinalTraits.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_Ptr.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_PtrDecl.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_RCP.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_RCPDecl.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_RCPNode.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_Range1D.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_RefCountPtr.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_RefCountPtrDecl.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_ScalarTraits.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_ScalarTraitsCUDA.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_ScalarTraitsDecl.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_SimpleObjectDB.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_SimpleObjectTable.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_StandardCatchMacros.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_StandardCompositionMacros.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_StandardMemberCompositionMacros.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_StaticSetupMacro.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_StrUtils.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_StringIndexedOrderedValueObjectContainer.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_TabularOutputter.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_TestForException.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_TestingHelpers.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_Time.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_Tuple.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_TwoDArray.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_TypeNameTraits.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_TypeTraits.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_UnitTestBase.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_UnitTestHarness.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_UnitTestHelpers.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_UnitTestRepository.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_Utils.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_VerboseObject.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_VerbosityLevel.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_Version.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_Workspace.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_any.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_as.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_basic_oblackholestream.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_dyn_cast.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_getBaseObjVoidPtr.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_getConst.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_getRawPtr.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_implicit_cast.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_iostream_helpers.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_map.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_oblackholestream.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_stacktrace.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_toString.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/TeuchosParameterList/TeuchosParameterListConfig.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/TeuchosParameterList/TeuchosParameterListTargets.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/TeuchosParameterList/TeuchosParameterListTargets-release.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Makefile.export.TeuchosParameterList
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/libteuchosparameterlist.a
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_Condition.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_ConditionXMLConverter.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_ConditionXMLConverterDB.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_Dependency.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_DependencySheet.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_DependencyXMLConverter.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_DependencyXMLConverterDB.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_DummyObjectGetter.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_ExpatHandlerAdapter.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_FileInputSource.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_FileInputStream.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_FunctionObject.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_FunctionObjectXMLConverter.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_FunctionObjectXMLConverterDB.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_InvalidConditionException.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_InvalidDependencyException.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_ObjectBuilder.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_ParameterEntry.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_ParameterEntryValidator.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_ParameterEntryXMLConverter.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_ParameterEntryXMLConverterDB.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_ParameterList.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_ParameterListAcceptor.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_ParameterListAcceptorDefaultBase.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_ParameterListAcceptorHelpers.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_ParameterListExceptions.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_ParameterListNonAcceptor.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_ParameterXMLFileReader.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_StandardConditionXMLConverters.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_StandardConditions.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_StandardDependencies.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_StandardDependencyXMLConverters.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_StandardFunctionObjectXMLConverters.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_StandardFunctionObjects.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_StandardParameterEntryValidators.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_StandardParameterEntryXMLConverters.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_StandardValidatorXMLConverters.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_StringInputSource.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_StringInputStream.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_TreeBuildingXMLHandler.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_ValidatorFactory.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_ValidatorMaps.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_ValidatorXMLConverter.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_ValidatorXMLConverterDB.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_VerboseObjectParameterListHelpers.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_VerbosityLevelCommandLineProcessorHelpers.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_XMLConditionExceptions.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_XMLDependencyExceptions.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_XMLFunctionObjectExceptions.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_XMLInputSource.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_XMLInputStream.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_XMLObject.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_XMLObjectImplem.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_XMLParameterListCoreHelpers.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_XMLParameterListExceptions.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_XMLParameterListReader.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_XMLParameterListWriter.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_XMLParser.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_XMLPerfTestArchive.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/TeuchosComm/TeuchosCommConfig.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/TeuchosComm/TeuchosCommTargets.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/TeuchosComm/TeuchosCommTargets-release.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Makefile.export.TeuchosComm
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/libteuchoscomm.a
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_CTimeMonitor.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_Comm.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_CommHelpers.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_CommUtilities.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_DefaultComm.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_DefaultMpiComm.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_DefaultSerialComm.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_Details_MpiCommRequest.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_Details_MpiTypeTraits.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_EReductionType.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_MpiReductionOpSetter.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_PerformanceMonitorBase.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_ReductionOp.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_ReductionOpHelpers.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_SerializationTraits.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_SerializationTraitsHelpers.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_Serializer.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_SerializerHelpers.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_TableColumn.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_TableEntry.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_TableFormat.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_TimeMonitor.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_XMLParameterListHelpers.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/TeuchosNumerics/TeuchosNumericsConfig.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/TeuchosNumerics/TeuchosNumericsTargets.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/TeuchosNumerics/TeuchosNumericsTargets-release.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Makefile.export.TeuchosNumerics
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/libteuchosnumerics.a
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_BLAS.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_BLAS_types.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_BLAS_wrappers.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_CompObject.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_DataAccess.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_Details_Lapack128.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_ExpandScalarTypeMacros.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_Flops.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_LAPACK.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_LAPACK_wrappers.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_MatrixMarket_Banner.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_MatrixMarket_CoordDataReader.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_MatrixMarket_Raw_Adder.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_MatrixMarket_Raw_Checker.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_MatrixMarket_Raw_Graph_Adder.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_MatrixMarket_Raw_Reader.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_MatrixMarket_Raw_Writer.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_MatrixMarket_SetScientific.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_MatrixMarket_SymmetrizingAdder.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_MatrixMarket_SymmetrizingGraphAdder.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_MatrixMarket_assignScalar.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_MatrixMarket_generic.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_MatrixMarket_split.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_Object.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_Polynomial.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_PolynomialDecl.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_PolynomialTraits.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_PromotionTraits.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_SerialBandDenseMatrix.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_SerialBandDenseSolver.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_SerialDenseHelpers.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_SerialDenseMatrix.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_SerialDenseSolver.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_SerialDenseVector.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_SerialQRDenseSolver.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_SerialSpdDenseSolver.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_SerialSymDenseMatrix.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_SerialTriDiMatrix.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/TeuchosRemainder/TeuchosRemainderConfig.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/TeuchosRemainder/TeuchosRemainderTargets.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/TeuchosRemainder/TeuchosRemainderTargets-release.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Makefile.export.TeuchosRemainder
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/libteuchosremainder.a
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/TeuchosRemainder_config.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_FILEstream.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_FloatingPointTrap.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_Handle.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_Handleable.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_Libxml2HandlerAdapter.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_MPITraits.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_StringToIntMap.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Teuchos_arrayArg.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Trilinos_Details_LinearSolver.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Trilinos_Details_LinearSolverFactory.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/Sacado/SacadoConfig.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/Sacado/SacadoTargets.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/Sacado/SacadoTargets-release.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Makefile.export.Sacado
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/libsacado.a
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_config.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_Exp_MathFunctions.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_Exp_Expression.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_Exp_ExpressionTraits.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_Exp_ExprAssign.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_Exp_Extender.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_Exp_GeneralFad.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_Exp_GeneralFadTraits.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_Exp_Ops.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_Exp_DynamicStorage.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_Exp_StaticStorage.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_Exp_StaticFixedStorage.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_Exp_MemPoolStorage.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_Exp_VectorDynamicStorage.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_Exp_ViewStorage.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_Exp_DFad.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_Exp_SLFad.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_Exp_SFad.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_Exp_ViewFad.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_Exp_DMFad.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_Exp_DVFad.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_GeneralFad.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_GeneralFadExpr.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_ExpressionTraits.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_ExpressionFwd.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_Expression.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_Ops.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_DynamicStorage.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_DFad.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_DFadTraits.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_StaticStorage.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_SLFad.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_SLFadTraits.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_SFad.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_SFadTraits.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_MemPool.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_MemPoolImp.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_MemPoolManager.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_MemPoolManagerImp.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_MemPoolStorage.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_DMFad.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_DMFadTraits.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_DVFad.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_DVFadTraits.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_Vector.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_VectorImp.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_VectorDynamicStorage.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_SimpleFad.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_SimpleFadImp.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_SimpleFadOps.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_SimpleFadTraits.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_ViewStorage.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_ViewFad.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_ViewFadTraits.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_DFad_tmpl.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_SFad_tmpl.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_SLFad_tmpl.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_ViewFad_tmpl.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_ELRFad_GeneralFad.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_ELRFad_GeneralFadExpr.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_ELRFad_ExpressionTraits.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_ELRFad_Expression.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_ELRFad_Ops.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_ELRFad_DFadTraits.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_ELRFad_DFad.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_ELRFad_SLFad.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_ELRFad_SLFadTraits.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_ELRFad_SFad.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_ELRFad_SFadTraits.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_ELRFad_ViewFad.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_ELRFad_ViewFadTraits.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_LFad_LogicalSparse.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_LFad_LogicalSparseOps.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_LFad_LogicalSparseTraits.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_LFad_ExpressionTraits.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_CacheFad_GeneralFad.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_CacheFad_GeneralFadExpr.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_CacheFad_ExpressionTraits.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_CacheFad_Expression.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_CacheFad_Ops.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_CacheFad_DFadTraits.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_CacheFad_DFad.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_CacheFad_SFadTraits.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_CacheFad_SFad.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_CacheFad_SLFadTraits.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_CacheFad_SLFad.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_CacheFad_ViewFad.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_CacheFad_ViewFadTraits.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_ELRCacheFad_GeneralFad.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_ELRCacheFad_GeneralFadExpr.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_ELRCacheFad_ExpressionTraits.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_ELRCacheFad_Expression.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_ELRCacheFad_Ops.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_ELRCacheFad_DFadTraits.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_ELRCacheFad_DFad.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_ELRCacheFad_SLFad.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_ELRCacheFad_SLFadTraits.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_ELRCacheFad_SFad.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_ELRCacheFad_SFadTraits.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_ELRCacheFad_ViewFad.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_ELRCacheFad_ViewFadTraits.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Tay_CacheTaylorTraits.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Tay_CacheTaylor.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Tay_CacheTaylorImp.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Tay_CacheTaylorExpr.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Tay_CacheTaylorOps.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Tay_TaylorTraits.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Tay_Taylor.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Tay_TaylorImp.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_trad_Traits.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_trad.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_trad2_Traits.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_trad2.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_tradvec_Traits.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_tradvec.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_rad.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_rad2.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_DynamicArrayTraits.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_StaticArrayTraits.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Handle.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_TemplateContainer.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_BLAS.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_BLASImp.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_LAPACK.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_LAPACKImp.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Fad_ScalarTraitsImp.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Tay_ScalarTraitsImp.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_TemplateManager.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_TemplateManagerImp.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_TemplateIterator.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_ParameterFamilyBase.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_ParameterFamilyBaseImp.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_ParameterLibraryBase.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_ParameterLibraryBaseImp.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_ParameterVectorBase.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_ScalarParameterEntry.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_ScalarParameterFamily.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_ScalarParameterLibrary.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_ScalarParameterVector.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_ParameterAccessor.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_ParameterAccessorImp.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_ParameterRegistration.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_mpl_is_same.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_mpl_is_convertible.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_mpl_enable_if.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_mpl_disable_if.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_mpl_if.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_mpl_none.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_mpl_begin.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_mpl_end.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_mpl_next.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_mpl_size.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_mpl_at.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_mpl_deref.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_mpl_push_back.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_mpl_find.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_mpl_for_each.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_mpl_vector.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_mpl_vector_size_spec.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_mpl_vector_at_spec.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_mpl_vector_push_back_spec.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_mpl_integral_c.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_mpl_range_c.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_mpl_apply.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_mpl_apply_wrap.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_mpl_bind.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_mpl_has_type.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_mpl_lambda.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_mpl_placeholders.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_mpl_quote.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_mpl_type_wrap.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_mpl_is_placeholder.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_mpl_integral_nonzero_constant.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_ScalarFlopCounter.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_ScalarFlopCounterTraits.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_ConfigDefs.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Version.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Traits.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_No_Kokkos.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Kokkos_View_Fad.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Kokkos_DynRankView_Fad.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Kokkos_DynRankView_Fad_Contiguous.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Kokkos_LayoutContiguous.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Kokkos_LayoutNatural.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/KokkosExp_View_Fad.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/KokkosExp_View_Fad_Contiguous.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Kokkos_ViewFactory.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_DisableKokkosCuda.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_MathFunctions.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_cmath.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_dummy_arg.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_Base.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Sacado_SFINAE_Macros.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/Epetra/EpetraConfig.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/Epetra/EpetraTargets.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/Epetra/EpetraTargets-release.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Makefile.export.Epetra
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/libepetra.a
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_config.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_DLLExportMacro.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_BLAS.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_BLAS_wrappers.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_BasicDirectory.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_BasicRowMatrix.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_BlockMap.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_BlockMapData.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_C_wrappers.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_CombineMode.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_Comm.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_CompObject.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_ConfigDefs.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_CrsGraph.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_CrsGraphData.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_CrsMatrix.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_CrsSingletonFilter.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_Data.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_DataAccess.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_Directory.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_DistObject.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_Distributor.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_Export.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_FECrsGraph.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_FECrsMatrix.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_FEVbrMatrix.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_FEVector.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_Flops.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_Fortran_wrappers.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_GIDTypeSerialDenseVector.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_GIDTypeVector.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_HashTable.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_Import.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_Import_Util.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_IntSerialDenseMatrix.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_IntSerialDenseVector.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_IntVector.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_InvOperator.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_JadMatrix.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_LAPACK.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_LAPACK_wrappers.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_LinearProblem.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_LocalMap.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_Map.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_MapColoring.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_MultiVector.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_Object.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_OffsetIndex.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_Operator.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_RowMatrix.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_RowMatrixTransposer.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_SerialComm.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_SerialCommData.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_SerialDenseMatrix.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_SerialDenseOperator.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_SerialDenseSVD.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_SerialDenseSolver.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_SerialDenseVector.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_SerialDistributor.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_SerialSpdDenseSolver.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_SerialSymDenseMatrix.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_SrcDistObject.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_Time.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_Util.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_VbrMatrix.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_VbrRowMatrix.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_Vector.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_Version.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_LongLongSerialDenseMatrix.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_LongLongSerialDenseVector.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_LongLongVector.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_MpiComm.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_MpiCommData.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_MpiDistributor.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/Zoltan/ZoltanConfig.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/Zoltan/ZoltanTargets.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/Zoltan/ZoltanTargets-release.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Makefile.export.Zoltan
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/libzoltan.a
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Zoltan_config.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/lbi_const.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/zoltan_align.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/zoltan_cpp.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/zoltan.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/zoltan_types.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/zoltan_comm.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/zoltan_comm_cpp.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/zoltan_timer_cpp.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/zoltan_timer.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/zoltan_dd.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/zoltan_dd_const.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/zoltan_dd_cpp.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/zoltan_partition_tree.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/zoltan_mem.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/zoltan_eval.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/Triutils/TriutilsConfig.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/Triutils/TriutilsTargets.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/Triutils/TriutilsTargets-release.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Makefile.export.Triutils
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/libtriutils.a
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Triutils_config.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Trilinos_Util.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Trilinos_Util_ReadMatrixMarket2Epetra.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Trilinos_Util_CountMatrixMarket.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Trilinos_Util_CountTriples.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Trilinos_Util_CrsMatrixGallery.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Trilinos_Util_CommandLineParser.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Trilinos_Util_iohb.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Trilinos_Util_Version.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/TrilinosSS/TrilinosSSConfig.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/TrilinosSS/TrilinosSSTargets.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/TrilinosSS/TrilinosSSTargets-release.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Makefile.export.TrilinosSS
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/libtrilinosss.a
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/trilinos_amd.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/trilinos_amd_internal.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/trilinos_btf_decl.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/trilinos_btf_internal.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/trilinos_camd.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/trilinos_camd_internal.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/trilinos_ccolamd.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/trilinos_colamd.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/trilinos_klu_decl.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/trilinos_klu_internal.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/trilinos_klu_version.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/trilinos_UFconfig.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/EpetraExt/EpetraExtConfig.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/EpetraExt/EpetraExtTargets.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/EpetraExt/EpetraExtTargets-release.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Makefile.export.EpetraExt
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/libepetraext.a
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_config.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_ConfigDefs.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_MMHelpers.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_MatrixMatrix.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_ProductOperator.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_TimedEpetraOperator.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_Version.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_SubCopy_CrsMatrix.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_Transform.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_Transform_Composite.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_Permutation.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_Permutation_impl.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_LPTrans_From_GraphTrans.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_LPTrans_From_MatrixTrans.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_View_CrsGraph.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_View_CrsMatrix.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_View_MultiVector.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_Transpose_CrsGraph.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_Transpose_RowMatrix.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_Scale_LinearProblem.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_CrsSingletonFilter_LinearProblem.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_Overlap_CrsGraph.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_Reindex_CrsMatrix.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_Reindex_MultiVector.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_Reindex_LinearProblem.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_Reindex_LinearProblem2.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_SolverMap_CrsMatrix.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_SolverMap_LinearProblem.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_BlockAdjacencyGraph.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_SymmRCM_CrsGraph.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_AMD_CrsGraph.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_BTF_CrsGraph.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_BTF_CrsMatrix.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_BTF_LinearProblem.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_BlockJacobi_LinearProblem.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_mmio.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_OperatorOut.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_RowMatrixOut.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_MultiVectorOut.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_VectorOut.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_BlockMapOut.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_BlockMapIn.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_CrsMatrixIn.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_MultiVectorIn.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_VectorIn.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_Exception.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_Utils.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_XMLReader.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_XMLWriter.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_HDF5.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_HDF5_Handle.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_DistArray.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_readEpetraLinearSystem.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_MapColoring.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_TCrsGraph_MapColoringIndex.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_MapColoringIndex.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_ModelEvaluator.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_ModelEvaluatorScalingTools.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_PolynomialVectorTraits.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_BlockCrsMatrix.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_BlockMultiVector.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_BlockVector.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_BlockUtility.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_MultiComm.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_MultiPointModelEvaluator.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_MultiSerialComm.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_BlockDiagMatrix.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_PointToBlockDiagPermute.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_MultiMpiComm.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_RestrictedMultiVectorWrapper.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_RestrictedCrsMatrixWrapper.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/Isorropia/IsorropiaConfig.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/Isorropia/IsorropiaTargets.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/Isorropia/IsorropiaTargets-release.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Makefile.export.Isorropia
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/libisorropia.a
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Isorropia_config.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Isorropia_CostDescriber.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Isorropia_Operator.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Isorropia_Partitioner.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Isorropia_Colorer.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Isorropia_Orderer.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Isorropia_Redistributor.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Isorropia_Utils.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Isorropia_Exception.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Isorropia_ConfigDefs.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Isorropia_Version.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Isorropia_LevelScheduler.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Isorropia_EpetraCostDescriber.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Isorropia_EpetraPartitioner.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Isorropia_EpetraOperator.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Isorropia_EpetraColorer.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Isorropia_EpetraOrderer.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Isorropia_EpetraProber.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Isorropia_Epetra.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Isorropia_EpetraRedistributor.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Isorropia_EpetraLibrary.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Isorropia_EpetraLevelScheduler.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Isorropia_EpetraMatcher.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/QueryObject.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Isorropia_EpetraZoltanLib.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/AztecOO/AztecOOConfig.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/AztecOO/AztecOOTargets.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/AztecOO/AztecOOTargets-release.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Makefile.export.AztecOO
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/libaztecoo.a
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/AztecOO_config.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/az_aztec_defs.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/az_aztecf.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/az_aztec.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/az_f77func.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/az_y12m_wrappers.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/az_blas_wrappers.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/az_lapack_wrappers.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/AztecOO.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/AztecOO_string_maps.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/AztecOO_Operator.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Epetra_MsrMatrix.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Aztec2Petra.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/AZOO_iterate.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/AZOO_printf.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/AztecOO_Scaling.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/AztecOO_StatusTest.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/AztecOO_StatusType.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/AztecOO_StatusTestCombo.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/AztecOO_StatusTestMaxIters.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/AztecOO_StatusTestResNorm.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/AztecOO_ConditionNumber.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/AztecOO_ConfigDefs.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/AztecOO_Version.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/Amesos/AmesosConfig.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/Amesos/AmesosTargets.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/Amesos/AmesosTargets-release.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Makefile.export.Amesos
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/libamesos.a
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Amesos_config.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Amesos_Klu.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Amesos.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Amesos_BaseSolver.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Amesos_ComponentBaseSolver.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Amesos_ConfigDefs.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/CrsMatrixTranspose.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Amesos_NoCopiable.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Amesos_Utils.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Amesos_Time.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Amesos_Control.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Amesos_Support.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Amesos_Status.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Amesos_Scaling.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Amesos_Reordering.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Amesos_Lapack.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Amesos_TestRowMatrix.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/Ifpack/IfpackConfig.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/Ifpack/IfpackTargets.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/Ifpack/IfpackTargets-release.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Makefile.export.Ifpack
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/libifpack.a
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_config.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_ConfigDefs.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_Version.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_IlukGraph.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_CrsRiluk.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_ILU.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_IKLU.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_IKLU_Utils.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_ILUT.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_OverlapGraph.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_ScalingType.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_ICT.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_IC.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_IC_Utils.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/ifp_parameters.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_Preconditioner.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_CondestType.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_Condest.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_DiagPreconditioner.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_PointRelaxation.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_BlockRelaxation.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_Container.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_SparseContainer.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_DenseContainer.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_TriDiContainer.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_SerialTriDiMatrix.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_SerialTriDiSolver.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_AdditiveSchwarz.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_LocalFilter.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_NodeFilter.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_DropFilter.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_SparsityFilter.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_ReorderFilter.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_SingletonFilter.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_DiagonalFilter.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_Graph.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_Graph_Epetra_RowMatrix.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_Graph_Epetra_CrsGraph.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_Partitioner.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_OverlappingPartitioner.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_LinePartitioner.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_LinearPartitioner.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_GreedyPartitioner.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_METISPartitioner.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_EquationPartitioner.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_UserPartitioner.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_Utils.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_HashTable.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_Reordering.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_RCMReordering.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_SPARSKIT.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_Chebyshev.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_Polynomial.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_Krylov.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_METISReordering.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_OverlappingRowMatrix.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_ValidParameters.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_HIPS.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_Hypre.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_Euclid.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_SILU.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_IHSS.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_SORa.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_AMDReordering.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_Amesos.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/Belos/BelosConfig.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/Belos/BelosTargets.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/Belos/BelosTargets-release.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Makefile.export.Belos
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/libbelos.a
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Belos_config.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Belos_Details_EBelosSolverType.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosBiCGStabIter.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosBiCGStabSolMgr.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosBlockCGIter.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosBlockCGSolMgr.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosBlockFGmresIter.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosBlockGmresIter.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosBlockGmresSolMgr.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosCGIteration.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosCGIter.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosCGSingleRedIter.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosConfigDefs.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosDGKSOrthoManager.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosFixedPointIter.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosFixedPointIteration.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosFixedPointSolMgr.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosGCRODRIter.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosGCRODRSolMgr.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosGmresIteration.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosGmresPolyOp.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosGmresPolySolMgr.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosICGSOrthoManager.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosIMGSOrthoManager.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosIteration.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosLinearProblem.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosLSQRIter.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosLSQRIteration.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosLSQRSolMgr.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosLSQRStatusTest.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosMatOrthoManager.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosMinresIteration.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosMinresIter.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosMinresSolMgr.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosMultiVec.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosMultiVecTraits.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosMVOPTester.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosOperator.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosOperatorTraits.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosOrthoManagerFactory.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosOrthoManager.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosOrthoManagerTest.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosOutputManager.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosPCPGIter.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosPCPGSolMgr.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosPseudoBlockCGIter.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosPseudoBlockCGSolMgr.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosPseudoBlockGmresIter.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosPseudoBlockGmresSolMgr.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosPseudoBlockStochasticCGIter.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosPseudoBlockStochasticCGSolMgr.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosRCGIter.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosRCGSolMgr.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosSimpleOrthoManager.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosSolverManager.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosSolverFactory.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosStatusTestCombo.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosStatusTestFactory.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosStatusTestGeneralOutput.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosStatusTestGenResNorm.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosStatusTestGenResSubNorm.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosStatusTest.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosStatusTestImpResNorm.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosStatusTestLogResNorm.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosStatusTestMaxIters.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosStatusTestOutputFactory.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosStatusTestOutput.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosStatusTestResNorm.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosStatusTestResNormOutput.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosStatusTestUserOutput.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosStochasticCGIteration.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosStubTsqrAdapter.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosTFQMRIter.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosTFQMRSolMgr.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosPseudoBlockTFQMRIter.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosPseudoBlockTFQMRSolMgr.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosTypes.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Belos_Details_LinearSolver.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Belos_Details_LinearSolverFactory.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Belos_Details_registerLinearSolverFactory.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosUtils.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/libbelosepetra.a
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosEpetraAdapter.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/BelosEpetraOperator.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Belos_Details_Epetra_registerLinearSolverFactory.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/ShyLU/ShyLUConfig.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Makefile.export.ShyLU
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/ShyLUCore/ShyLUCoreConfig.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/ShyLUCore/ShyLUCoreTargets.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/ShyLUCore/ShyLUCoreTargets-release.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Makefile.export.ShyLUCore
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/libshylu.a
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/ShyLUCore_config.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/shylu_internal_gmres.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/shylu_internal_gmres_tools.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/IQRSolver.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/shylu_debug_manager.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Ifpack_ShyLU.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/shylu_amesos_schur_operator.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/shylu_util.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/shylu_symbolic.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/shylu.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/shylu_probing_operator.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/shylu_local_schur_operator.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/shylu_internal.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/shylu_config.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/shylu_partition_interface.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/shylu_partition_interface_def.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/shylu_partition_interface_decl.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/shylu_directsolver_interface.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/shylu_directsolver_interface_def.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/shylu_directsolver_interface_decl.hpp
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/NOX/NOXConfig.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/NOX/NOXTargets.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/NOX/NOXTargets-release.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Makefile.export.NOX
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/libnox.a
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_Config.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_Common.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_Abstract_Vector.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_Abstract_MultiVector.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_Abstract_Group.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_Abstract_PrePostOperator.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_Abstract_ImplicitWeighting.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_LineSearch_Generic.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_LineSearch_Factory.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_LineSearch_UserDefinedFactory.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_LineSearch_UserDefinedFactoryT.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_LineSearch_Utils_Slope.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_LineSearch_Utils_Printing.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_LineSearch_Utils_Counters.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_LineSearch_FullStep.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_LineSearch_Backtrack.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_LineSearch_MoreThuente.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_LineSearch_NonlinearCG.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_LineSearch_Polynomial.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_LineSearch_SafeguardedStep.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_Direction_Generic.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_Direction_Factory.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_Direction_UserDefinedFactory.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_Direction_UserDefinedFactoryT.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_Direction_Newton.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_Direction_Broyden.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_Direction_NonlinearCG.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_Direction_SteepestDescent.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_Direction_Utils_InexactNewton.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_Solver_Generic.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_Solver_Factory.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_Solver_SolverUtils.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_Solver_LineSearchBased.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_Solver_TrustRegionBased.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_Solver_InexactTrustRegionBased.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_Solver_TensorBased.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_Solver_AndersonAcceleration.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_Solver_PrePostOperator.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_Solver_SingleStep.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_MeritFunction_Generic.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_MeritFunction_SumOfSquares.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_StatusTest_Generic.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_StatusTest_Factory.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_StatusTest_NormF.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_StatusTest_FiniteValue.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_StatusTest_NormUpdate.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_StatusTest_Combo.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_StatusTest_MaxIters.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_StatusTest_NormWRMS.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_StatusTest_Stagnation.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_StatusTest_Divergence.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_StatusTest_RelativeNormF.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_StatusTest_NStep.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_Utils.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_SharedObjectTemplate.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_Random.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_Version.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_GlobalData.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_PrePostOperator_Vector.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_Assert.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_MultiVector.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_Multiphysics_Group.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_Multiphysics_Solver_Manager.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_Multiphysics_Solver_Generic.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_Multiphysics_Solver_FixedPointBased.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_Multiphysics_DataExchange_Interface.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/libnoxlapack.a
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_LAPACK.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_LAPACK_Matrix.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_LAPACK_Vector.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_LAPACK_LinearSolver.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_LAPACK_Group.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_LAPACK_Interface.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/libnoxepetra.a
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_Epetra.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_Epetra_Vector.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_Epetra_VectorSpace.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_Epetra_VectorSpace_L2.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_Epetra_VectorSpace_ScaledL2.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_Epetra_MultiVector.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_Epetra_Group.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_Epetra_Interface_Required.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_Epetra_Interface_Jacobian.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_Epetra_Interface_Preconditioner.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_Epetra_LinearSystem.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_Epetra_LinearSystem_AztecOO.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_Epetra_MatrixFree.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_Epetra_FiniteDifference.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_Epetra_FiniteDifferenceColoring.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_Epetra_Scaling.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_Epetra_BroydenOperator.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_Epetra_ModelEvaluatorInterface.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_Epetra_LinearSystem_Amesos.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_Epetra_LinearSystem_Stratimikos.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_Epetra_Observer.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_Epetra_AdaptManager.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_Epetra_AdaptiveSolutionManager.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/NOX_Epetra_FiniteDifferenceColoringWithUpdate.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/libloca.a
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Abstract_Group.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Abstract_TransposeSolveGroup.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Abstract_Iterator.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Abstract_Factory.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Extended_Vector.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Extended_MultiVector.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Extended_MultiAbstractGroup.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_BorderedSolver_AbstractOperator.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_BorderedSolver_JacobianOperator.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_BorderedSolver_ComplexOperator.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_BorderedSolver_BorderedOperator.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_BorderedSolver_AbstractStrategy.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_BorderedSolver_LowerTriangularBlockElimination.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_BorderedSolver_UpperTriangularBlockElimination.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_BorderedSolver_Bordering.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_BorderedSolver_HouseholderQR.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_BorderedSystem_AbstractGroup.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_BorderedSolver_Nested.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_BorderedSolver_Factory.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_MultiContinuation_ExtendedVector.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_MultiContinuation_ExtendedMultiVector.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_MultiContinuation_AbstractGroup.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_MultiContinuation_FiniteDifferenceGroup.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_MultiContinuation_ConstraintInterface.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_MultiContinuation_ConstraintInterfaceMVDX.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_MultiContinuation_MultiVecConstraint.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_MultiContinuation_CompositeConstraint.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_MultiContinuation_CompositeConstraintMVDX.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_MultiContinuation_ConstrainedGroup.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_MultiContinuation_AbstractStrategy.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_MultiContinuation_ExtendedGroup.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_MultiContinuation_NaturalGroup.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_MultiContinuation_NaturalConstraint.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_MultiContinuation_ArcLengthGroup.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_MultiContinuation_ArcLengthConstraint.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_MultiContinuation_Factory.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_TimeDependent_AbstractGroup.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_TurningPoint_MooreSpence_ExtendedVector.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_TurningPoint_MooreSpence_ExtendedMultiVector.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_TurningPoint_MooreSpence_AbstractGroup.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_TurningPoint_MooreSpence_FiniteDifferenceGroup.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_TurningPoint_MooreSpence_ExtendedGroup.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_TurningPoint_MooreSpence_SolverStrategy.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_TurningPoint_MooreSpence_SalingerBordering.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_TurningPoint_MooreSpence_PhippsBordering.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_TurningPoint_MooreSpence_SolverFactory.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_TurningPoint_MinimallyAugmented_AbstractGroup.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_TurningPoint_MinimallyAugmented_FiniteDifferenceGroup.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_TurningPoint_MinimallyAugmented_Constraint.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_TurningPoint_MinimallyAugmented_ModifiedConstraint.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_TurningPoint_MinimallyAugmented_ExtendedGroup.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Pitchfork_MooreSpence_ExtendedVector.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Pitchfork_MooreSpence_ExtendedMultiVector.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Pitchfork_MooreSpence_AbstractGroup.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Pitchfork_MooreSpence_ExtendedGroup.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Pitchfork_MooreSpence_SolverStrategy.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Pitchfork_MooreSpence_SalingerBordering.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Pitchfork_MooreSpence_PhippsBordering.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Pitchfork_MooreSpence_SolverFactory.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Pitchfork_MinimallyAugmented_AbstractGroup.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Pitchfork_MinimallyAugmented_Constraint.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Pitchfork_MinimallyAugmented_ExtendedGroup.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Hopf_MooreSpence_ExtendedVector.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Hopf_MooreSpence_ExtendedMultiVector.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Hopf_MooreSpence_AbstractGroup.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Hopf_MooreSpence_FiniteDifferenceGroup.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Hopf_MooreSpence_ExtendedGroup.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Hopf_MooreSpence_SolverStrategy.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Hopf_MooreSpence_SalingerBordering.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Hopf_MooreSpence_SolverFactory.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Hopf_ComplexVector.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Hopf_ComplexMultiVector.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Hopf_MinimallyAugmented_AbstractGroup.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Hopf_MinimallyAugmented_FiniteDifferenceGroup.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Hopf_MinimallyAugmented_Constraint.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Hopf_MinimallyAugmented_ExtendedGroup.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_PhaseTransition_ExtendedVector.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_PhaseTransition_ExtendedMultiVector.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_PhaseTransition_AbstractGroup.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_PhaseTransition_ExtendedGroup.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Bifurcation_Factory.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Homotopy_AbstractGroup.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Homotopy_Group.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Homotopy_DeflatedGroup.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_DerivUtils.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_ErrorCheck.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Parameter_Vector.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Parameter_Library.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Parameter_LibraryT.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Parameter_Entry.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Parameter_SublistParser.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_MultiPredictor_AbstractStrategy.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_MultiPredictor_Constant.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_MultiPredictor_Tangent.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_MultiPredictor_Secant.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_MultiPredictor_Random.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_MultiPredictor_Restart.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_MultiPredictor_Factory.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_StepSize_AbstractStrategy.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_StepSize_Constant.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_StepSize_Adaptive.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_StepSize_Factory.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Stepper.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Solver_Wrapper.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_StatusTest_Wrapper.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_StatusTest_Abstract.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_StatusTest_Combo.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_StatusTest_MaxIters.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Factory.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_GlobalData.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Eigensolver_AbstractStrategy.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Eigensolver_DefaultStrategy.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Eigensolver_Factory.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_EigenvalueSort_Strategies.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_EigenvalueSort_Factory.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_SaveEigenData_AbstractStrategy.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_SaveEigenData_DefaultStrategy.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_SaveEigenData_Factory.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_AnasaziOperator_AbstractStrategy.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_AnasaziOperator_JacobianInverse.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_AnasaziOperator_ShiftInvert.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_AnasaziOperator_ShiftInvert2Matrix.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_AnasaziOperator_Cayley.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_AnasaziOperator_Cayley2Matrix.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_AnasaziOperator_Factory.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/liblocalapack.a
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_LAPACK.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_LAPACK_Group.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_LAPACK_Interface.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Eigensolver_DGGEVStrategy.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_BorderedSolver_LAPACKDirectSolve.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_LAPACK_Factory.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/liblocaepetra.a
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Epetra.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Epetra_TransposeLinearSystem_AbstractStrategy.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Epetra_TransposeLinearSystem_TransposePreconditioner.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Epetra_IdentityOp.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Epetra_LeftPreconditionedOp.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Epetra_TransposeLinearSystem_LeftPreconditioning.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Epetra_TransposeLinearSystem_Factory.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Epetra_Interface_Required.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Epetra_Interface_MassMatrix.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Epetra_Interface_TimeDependent.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Epetra_Interface_TimeDependentMatrixFree.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Epetra_Interface_FreeEnergy.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Epetra_Group.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Epetra_CompactWYOp.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Epetra_LowRankUpdateOp.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Epetra_LowRankUpdateRowMatrix.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_BorderedSolver_EpetraHouseholder.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Epetra_AugmentedOp.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_BorderedSolver_EpetraAugmented.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Epetra_Factory.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Epetra_ShiftInvertOperator.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Epetra_AdaptiveSolutionManager.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Epetra_Interface_xyzt.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Epetra_Interface_MultiPoint.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Epetra_xyztPrec.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Epetra_AnasaziOperator_Floquet.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Epetra_TransposeLinearSystem_ExplicitTranspose.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Epetra_ModelEvaluatorInterface.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCA_Epetra_AdaptiveStepper.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/ContinuationManager.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/LOCAInterface.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/ProblemNOXPrototype.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/ProblemLOCAPrototype.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/IOContFileUtils.H
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/TrilinosCouplings/TrilinosCouplingsConfig.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/TrilinosCouplings/TrilinosCouplingsTargets.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/cmake/TrilinosCouplings/TrilinosCouplingsTargets-release.cmake
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/Makefile.export.TrilinosCouplings
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/lib/libtrilinoscouplings.a
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/TrilinosCouplings_config.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/TrilinosCouplings_Version.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_Isorropia_CrsGraph.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_AmesosBTF_CrsGraph.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_AmesosBTF_CrsMatrix.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_AmesosAMDGlobal_CrsGraph.h
-- Installing: /home/phung/Documents/Grive/Personal/Analog/Xyce/trilinos/pkg/trilinos-xyce/include/EpetraExt_AmesosBTFGlobal_LinearProblem.h
==> Tidying install...
  -> Removing libtool files...
  -> Purging unwanted files...
  -> Removing static library files...
  -> Stripping unneeded symbols from binaries and libraries...
  -> Compressing man and info pages...
==> Checking for packaging issues...
==> WARNING: Package contains reference to $srcdir
lib/libifpack.a
lib/libtrilinoscouplings.a
lib/libloca.a
lib/libepetra.a
lib/libteuchosparameterlist.a
lib/liblocalapack.a
lib/libteuchosremainder.a
lib/libshylu.a
lib/libaztecoo.a
lib/libteuchoscomm.a
lib/libnoxepetra.a
lib/libnox.a
lib/libisorropia.a
lib/libteuchoscore.a
lib/libepetraext.a
lib/libamesos.a
lib/libtriutils.a
lib/liblocaepetra.a
lib/libteuchosnumerics.a
lib/libnoxlapack.a
lib/libbelos.a
lib/libbelosepetra.a
lib/libzoltan.a
==> Creating package "trilinos-xyce"...
  -> Generating .PKGINFO file...
  -> Generating .BUILDINFO file...
  -> Generating .MTREE file...
  -> Compressing package...
==> Leaving fakeroot environment.
==> Finished making: trilinos-xyce 12.12.1-4 (Sat 23 Feb 2019 02:01:56 AM +08)
[phung@archlinux trilinos]$ 

Last edited by promach (2019-02-23 07:57:26)

Offline

#17 2019-02-23 03:41:29

jamespharvey20
Member
Registered: 2015-06-09
Posts: 129

Re: [REQUEST] Xyce circuit simulator

You can ignore that particular warning.  That means upstream's source code did something like use a "__FILE__" macro, which bakes in the srcdir used to make the package.  It's only really an issue for reproduceable builds.  Happens on a lot of packages, and can currently be safely ignored.

Offline

#18 2019-02-23 04:10:53

promach
Member
Registered: 2016-05-18
Posts: 96

Re: [REQUEST] Xyce circuit simulator

I have updated the PKGBUILD for trilinos-xyce (that builds and installs successfully without error) as follows:

# Contributor: Cheng Fei Phung <feiphung@hotmail.com>
# Contributor: Alad Wenter <alad@archlinux.org>
# Contributor: Jingbei Li <i@jingbei.li>
# Contributor: Simon Pintarelli <simon.pintarelli@gmail.com>
# Contributor: Feng Wang <wanng.fenng@gmail.com>

pkgname=trilinos-xyce
pkgver=12.12.1
_pkgver=${pkgver//./-}
pkgrel=4
pkgdesc="algorithms for the solution of large-scale scientific problems"                                                                     
arch=('x86_64')
url="http://trilinos.org"
license=('LGPL3')
depends=('lapack' 'openmpi' 'python2' 'boost' 'netcdf' 'libmatio' 'libx11')                                                                  
makedepends=('python2-numpy' 'swig' 'gcc-fortran' 'perl' 'blas' 'cmake' 'gtest' 'doxygen')
checkdepends=('cmake')
conflicts=('trilinos')
provides=('trilinos=${pkgver}')
source=("https://github.com/trilinos/Trilinos/archive/trilinos-release-$_pkgver.tar.gz")                                                     
sha256sums=('5474c5329c6309224a7e1726cf6f0d855025b2042959e4e2be2748bd6bb49e18')                                                              

prepare() {
    # https://github.com/trilinos/Trilinos/issues/862#issuecomment-365852261                                                                 
    find Trilinos-trilinos-release-"$_pkgver" -name "*.py" -exec \
    	sed -i '1s#\(/usr/bin/env \|/usr/bin/\)python[2-3]*#\1python2#' {} \;                                                                
}

build() {
    cd Trilinos-trilinos-release-"$_pkgver"
    mkdir -p build
    cd build
	
	export ARCHDIR=/usr
	export FLAGS="-O3 -fPIC"

    cmake .. \
		-G "Unix Makefiles" \
		-DCMAKE_C_COMPILER=mpicc \
		-DCMAKE_CXX_COMPILER=mpic++ \
		-DCMAKE_Fortran_COMPILER=mpif77 \
		-DCMAKE_CXX_FLAGS="$FLAGS" \
		-DCMAKE_C_FLAGS="$FLAGS" \
		-DCMAKE_Fortran_FLAGS="$FLAGS" \
		-DCMAKE_INSTALL_PREFIX=$ARCHDIR \
		-DCMAKE_MAKE_PROGRAM="make" \
		-DTrilinos_ENABLE_NOX=ON \
		-DNOX_ENABLE_LOCA=ON \
		-DTrilinos_ENABLE_EpetraExt=ON \
		-DEpetraExt_BUILD_BTF=ON \
		-DEpetraExt_BUILD_EXPERIMENTAL=ON \
		-DEpetraExt_BUILD_GRAPH_REORDERINGS=ON \
		-DTrilinos_ENABLE_TrilinosCouplings=ON \
		-DTrilinos_ENABLE_Ifpack=ON \
		-DTrilinos_ENABLE_ShyLU=ON \
		-DTrilinos_ENABLE_Isorropia=ON \
		-DTrilinos_ENABLE_AztecOO=ON \
		-DTrilinos_ENABLE_Belos=ON \
		-DTrilinos_ENABLE_Teuchos=ON \
		-DTeuchos_ENABLE_COMPLEX=ON \
		-DTrilinos_ENABLE_Amesos=ON \
		-DAmesos_ENABLE_KLU=ON \
		-DTrilinos_ENABLE_Sacado=ON \
		-DTrilinos_ENABLE_Kokkos=OFF \
		-DTrilinos_ENABLE_Zoltan=ON \
		-DTrilinos_ENABLE_ALL_OPTIONAL_PACKAGES=OFF \
		-DTrilinos_ENABLE_CXX11=OFF \
		-DTPL_ENABLE_AMD=ON \
		-DAMD_LIBRARY_DIRS="/usr/lib" \
		-DTPL_AMD_INCLUDE_DIRS="/usr/include/suitesparse" \
		-DTPL_ENABLE_BLAS=ON \
		-DTPL_ENABLE_LAPACK=ON \
		-DTPL_ENABLE_MPI=ON
		
    make VERBOSE=1
}

check() {
    cd Trilinos-trilinos-release-"$_pkgver"/build
    ctest
}

package() {
    cd Trilinos-trilinos-release-"$_pkgver"/build
    make DESTDIR="$pkgdir" install
}

Offline

#19 2019-02-23 05:19:27

promach
Member
Registered: 2016-05-18
Posts: 96

Re: [REQUEST] Xyce circuit simulator

Why the following PKGBUILD for Xyce package resulted in   g++: fatal error: Killed signal terminated program cc1plus    ?

Note: to bypass the bison version error temporarily, look inside the downloaded tar.gz and specifically lines 6459 to 6462 of the file named 'configure'. Change 3.1 to 3.2 there

# Maintainer: Cheng Fei Phung <feiphung@hotmail.com>

pkgname=Xyce
pkgver=6.10
pkgrel=1
pkgdesc="The Xyce Parallel Electronic Simulator is a SPICE-compatible circuit simulator"
arch=('x86_64')
url="https://xyce.sandia.gov/about_xyce/index.html"
license=('GPL')
depends=('bison' 'trilinos-xyce')
makedepends=()
source=("https://xyce.sandia.gov/downloads/_assets/documents/${pkgname}-${pkgver}.tar.gz")
md5sums=('SKIP')

build() {
  cd "${pkgname}-${pkgver}"

  ./configure \
  CXXFLAGS="-O3" \
  CPPFLAGS="-I/usr/include/suitesparse" \
  --enable-mpi \
  CXX=mpicxx \
  CC=mpicc \
  F77=mpif77

  make
}

package() {
  cd "${pkgname}-${pkgver}"
  make PREFIX=/usr DESTDIR="$pkgdir" install
}
[phung@archlinux Xyce]$ makepkg -s
==> Making package: Xyce 6.10-1 (Sat 23 Feb 2019 12:32:42 PM +08)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
  -> Found Xyce-6.10.tar.gz
==> Validating source files with md5sums...
    Xyce-6.10.tar.gz ... Skipped
==> Extracting sources...
  -> Extracting Xyce-6.10.tar.gz with bsdtar
==> Removing existing $pkgdir/ directory...
==> Starting build()...
checking whether make supports nested variables... yes
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking target system type... x86_64-unknown-linux-gnu
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether to build the xyce binary... yes
checking whether to build xyce shareable... no
checking whether the C++ compiler works... yes
checking for C++ compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C++ compiler... yes
checking whether mpicxx accepts -g... yes
checking whether make supports the include directive... yes (GNU style)
checking dependency style of mpicxx... gcc3
checking whether we are using the GNU C compiler... yes
checking whether mpicc accepts -g... yes
checking for mpicc option to accept ISO C89... none needed
checking whether mpicc understands -c and -o together... yes
checking dependency style of mpicc... gcc3
checking whether we are using the GNU Fortran 77 compiler... yes
checking whether mpif77 accepts -g... yes
checking for flex... flex
checking lex output file root... lex.yy
checking lex library... -lfl
checking whether yytext is a pointer... yes
checking for bison... bison
checking for bison version 3.2... yes
checking whether make sets $(MAKE)... (cached) yes
checking how to print strings... printf
checking for a sed that does not truncate output... /usr/bin/sed
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for fgrep... /usr/bin/grep -F
checking for ld used by mpicc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1572864
checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for ar... ar
checking for archiver @FILE support... @
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from mpicc object... ok
checking for sysroot... no
checking for a working dd... /usr/bin/dd
checking how to truncate binary pipes... /usr/bin/dd bs=4096 count=1
checking for mt... no
checking if : is a manifest tool... no
checking how to run the C preprocessor... mpicc -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for dlfcn.h... yes
checking for objdir... .libs
checking if mpicc supports -fno-rtti -fno-exceptions... no
checking for mpicc option to produce PIC... -fPIC -DPIC
checking if mpicc PIC flag -fPIC -DPIC works... yes
checking if mpicc static flag -static works... no
checking if mpicc supports -c -o file.o... yes
checking if mpicc supports -c -o file.o... (cached) yes
checking whether the mpicc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... no
checking whether to build static libraries... yes
checking how to run the C++ preprocessor... mpicxx -E
checking for ld used by mpicxx... /usr/bin/ld -m elf_x86_64
checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
checking whether the mpicxx linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking for mpicxx option to produce PIC... -fPIC -DPIC
checking if mpicxx PIC flag -fPIC -DPIC works... yes
checking if mpicxx static flag -static works... no
checking if mpicxx supports -c -o file.o... yes
checking if mpicxx supports -c -o file.o... (cached) yes
checking whether the mpicxx linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... (cached) GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... no
checking whether to build static libraries... yes
checking for mpif77 option to produce PIC... -fPIC
checking if mpif77 PIC flag -fPIC works... yes
checking if mpif77 static flag -static works... no
checking if mpif77 supports -c -o file.o... yes
checking if mpif77 supports -c -o file.o... (cached) yes
checking whether the mpif77 linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... (cached) GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking for grep that handles long lines and -e... (cached) /usr/bin/grep
checking whether your C++ compiler is the Intel compiler version less than 12... no
checking how to get verbose linking output from mpif77... -v
checking for Fortran 77 libraries of mpif77...  -L/lib -L/usr/lib/openmpi -L/usr/lib/gcc/x86_64-pc-linux-gnu/8.2.1 -L/usr/lib/gcc/x86_64-pc-linux-gnu/8.2.1/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/8.2.1/../../.. -lmpi_usempif08 -lmpi_usempi_ignore_tkr -lmpi_mpifh -lmpi -lgfortran -lm -lquadmath -lpthread
checking for library containing sqrt... -lm
checking for library containing dcopy... -lblas
checking for library containing dgetrs... -llapack
checking for ANSI C header files... (cached) yes
checking whether the compiler implements namespaces... yes
checking whether the compiler supports Standard Template Library... yes
checking for unistd.h... (cached) yes
checking values.h usability... yes
checking values.h presence... yes
checking for values.h... yes
checking limits.h usability... yes
checking limits.h presence... yes
checking for limits.h... yes
checking float.h usability... yes
checking float.h presence... yes
checking for float.h... yes
checking math.h usability... yes
checking math.h presence... yes
checking for math.h... yes
checking cmath usability... yes
checking cmath presence... yes
checking for cmath... yes
checking climits usability... yes
checking climits presence... yes
checking for climits... yes
checking ostream usability... yes
checking ostream presence... yes
checking for ostream... yes
checking iostream usability... yes
checking iostream presence... yes
checking for iostream... yes
checking ostream.h usability... no
checking ostream.h presence... no
checking for ostream.h... no
checking fstream usability... yes
checking fstream presence... yes
checking for fstream... yes
checking cstdio usability... yes
checking cstdio presence... yes
checking for cstdio... yes
checking algorithm usability... yes
checking algorithm presence... yes
checking for algorithm... yes
checking cctype usability... yes
checking cctype presence... yes
checking for cctype... yes
checking cstdlib usability... yes
checking cstdlib presence... yes
checking for cstdlib... yes
checking cstring usability... yes
checking cstring presence... yes
checking for cstring... yes
checking for strings.h... (cached) yes
checking for string.h... (cached) yes
checking unordered_map usability... yes
checking unordered_map presence... yes
checking for unordered_map... yes
checking unordered_set usability... yes
checking unordered_set presence... yes
checking for unordered_set... yes
checking functional usability... yes
checking functional presence... yes
checking for functional... yes
checking tr1/unordered_map usability... yes
checking tr1/unordered_map presence... yes
checking for tr1/unordered_map... yes
checking tr1/unordered_set usability... yes
checking tr1/unordered_set presence... yes
checking for tr1/unordered_set... yes
checking tr1/functional usability... yes
checking tr1/functional presence... yes
checking for tr1/functional... yes
checking sys/resource.h usability... yes
checking sys/resource.h presence... yes
checking for sys/resource.h... yes
checking for stdlib.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for library containing dlopen... -ldl
checking for unistd.h... (cached) yes
checking malloc.h usability... yes
checking malloc.h presence... yes
checking for malloc.h... yes
checking pwd.h usability... yes
checking pwd.h presence... yes
checking for pwd.h... yes
checking sys/utsname.h usability... yes
checking sys/utsname.h presence... yes
checking for sys/utsname.h... yes
checking for mallinfo... yes
checking for getpwuid... yes
checking for gethostname... yes
checking for getdomainname... yes
checking for uname... yes
checking for sysconf... yes
checking for /proc/self/stat... yes
checking mathimf.h usability... no
checking mathimf.h presence... no
checking for mathimf.h... no
checking whether the compiler supports isnan and isinf... yes
checking for library containing MPI_Bcast... none required
checking for amd_valid in -lamd... yes
checking for main in -lteuchoscore... yes
configure: WARNING: Unable to find export file: Makefile.export.Teuchos.  Using predefined library dependencies.
checking for main in -lteuchoscore... (cached) yes
checking for main in -lteuchosremainder... yes
checking for main in -lteuchosnumerics... yes
checking for main in -lteuchoscomm... yes
checking for main in -lteuchosparameterlist... yes
checking for trilinos_klu_defaults in -ltrilinosss... yes
configure: WARNING: Unable to find export file: Makefile.export.Triutils.  Using predefined library dependencies.
checking for main in -ltriutils... yes
configure: WARNING: Unable to find export file: Makefile.export.Epetra.  Using predefined library dependencies.
checking for main in -lepetra... yes
configure: WARNING: Unable to find export file: Makefile.export.EpetraExt.  Using predefined library dependencies.
checking for main in -lepetraext... yes
checking EpetraExt_AMD_CrsGraph.h usability... yes
checking EpetraExt_AMD_CrsGraph.h presence... yes
checking for EpetraExt_AMD_CrsGraph.h... yes
checking whether HAVE_TEUCHOS_COMPLEX is declared... yes
checking whether HAVE_LIBPARMETIS is declared... no
checking for Zoltan_LB_Balance in -lzoltan... yes
configure: WARNING: Unable to find export file: Makefile.export.Isorropia.  Using predefined library dependencies.
checking for main in -lisorropia... yes
checking Amesos_Umfpack.h usability... no
checking Amesos_Umfpack.h presence... no
checking for Amesos_Umfpack.h... no
configure: WARNING: Unable to find export file: Makefile.export.Amesos.  Using predefined library dependencies.
checking for main in -lamesos... yes
configure: WARNING: Unable to find export file: Makefile.export.TrilinosCouplings.  Using predefined library dependencies.
checking for main in -ltrilinoscouplings... yes
configure: WARNING: Unable to find export file: Makefile.export.Ifpack.  Using predefined library dependencies.
checking for main in -lifpack... yes
configure: WARNING: Unable to find export file: Makefile.export.AztecOO.  Using predefined library dependencies.
checking for main in -laztecoo... yes
configure: WARNING: Unable to find export file: Makefile.export.Belos.  Using predefined library dependencies.
checking for main in -lbelos... yes
checking for main in -lbelosepetra... yes
configure: WARNING: Unable to find export file: Makefile.export.NOX.  Using predefined library dependencies.
checking for main in -lnox... yes
checking for main in -lloca... yes
checking whether the NOX abstract vector length is a NOX::size_type... yes
checking whether the NOX abstract solver has getSolverStatistics()... no
checking Epetra_MultiVector.h usability... yes
checking Epetra_MultiVector.h presence... yes
checking for Epetra_MultiVector.h... yes
checking Ifpack_CrsRiluk.h usability... yes
checking Ifpack_CrsRiluk.h presence... yes
checking for Ifpack_CrsRiluk.h... yes
checking Amesos_Klu.h usability... yes
checking Amesos_Klu.h presence... yes
checking for Amesos_Klu.h... yes
checking NOX_Abstract_Vector.H usability... yes
checking NOX_Abstract_Vector.H presence... yes
checking for NOX_Abstract_Vector.H... yes
checking LOCA_Parameter_Vector.H usability... yes
checking LOCA_Parameter_Vector.H presence... yes
checking for LOCA_Parameter_Vector.H... yes
checking Sacado.hpp usability... yes
checking Sacado.hpp presence... yes
checking for Sacado.hpp... yes
checking whether math.h defines M_PI... yes
checking whether use of stl strings and pairs requires including pair.h... no
checking for strcasecmp... yes
checking for getopt... yes
checking for drand48... yes
checking for erf... yes
checking for erfc... yes
checking mkl_dfti.h usability... no
checking mkl_dfti.h presence... no
checking for mkl_dfti.h... no
checking fftw3.h usability... yes
checking fftw3.h presence... yes
checking for fftw3.h... yes
checking for library containing fftw_plan_dft_1d... -lfftw3
checking whether your gcc has a braindamaged STL algorithm random_shuffle... no
checking whether your STL algorithm includes iota... yes
checking for main in -lARAEnv... no
-lfftw3 -lloca -lnox -lbelosepetra -lbelos -laztecoo -lifpack -ltrilinoscouplings -lamesos -lisorropia -lzoltan -lepetraext -lepetra -ltriutils -ltrilinosss -lteuchosparameterlist -lteuchoscomm -lteuchosnumerics -lteuchosremainder -lteuchoscore -lamd -ldl -llapack -lblas -lm -L/lib -L/usr/lib/openmpi -L/usr/lib/gcc/x86_64-pc-linux-gnu/8.2.1 -L/usr/lib/gcc/x86_64-pc-linux-gnu/8.2.1/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/8.2.1/../../.. -lmpi_usempif08 -lmpi_usempi_ignore_tkr -lmpi_mpifh -lmpi -lgfortran -lm -lquadmath -lpthread
checking whether libraries (-lfftw3 -lloca -lnox -lbelosepetra -lbelos -laztecoo -lifpack -ltrilinoscouplings -lamesos -lisorropia -lzoltan -lepetraext -lepetra -ltriutils -ltrilinosss -lteuchosparameterlist -lteuchoscomm -lteuchosnumerics -lteuchosremainder -lteuchoscore -lamd -ldl -llapack -lblas -lm   -L/lib -L/usr/lib/openmpi -L/usr/lib/gcc/x86_64-pc-linux-gnu/8.2.1 -L/usr/lib/gcc/x86_64-pc-linux-gnu/8.2.1/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/8.2.1/../../.. -lmpi_usempif08 -lmpi_usempi_ignore_tkr -lmpi_mpifh -lmpi -lgfortran -lm -lquadmath -lpthread ) will link... yes
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating src/Makefile
config.status: creating src/AnalysisPKG/Makefile
config.status: creating src/CircuitPKG/Makefile
config.status: creating src/IOInterfacePKG/Makefile
config.status: creating src/IOInterfacePKG/Output/Makefile
config.status: creating src/DakotaLinkPKG/Makefile
config.status: creating src/DeviceModelPKG/Makefile
config.status: creating src/DeviceModelPKG/Core/Makefile
config.status: creating src/DeviceModelPKG/OpenModels/Makefile
config.status: creating src/DeviceModelPKG/TCADModels/Makefile
config.status: creating src/DeviceModelPKG/NeuronModels/Makefile
config.status: creating src/DeviceModelPKG/ADMS/Makefile
config.status: creating src/DeviceModelPKG/EXTSC/Makefile
config.status: creating src/ErrorHandlingPKG/Makefile
config.status: creating src/LinearAlgebraServicesPKG/Makefile
config.status: creating src/LinearAlgebraServicesPKG/ksparse/Makefile
config.status: creating src/LoaderServicesPKG/Makefile
config.status: creating src/NonlinearSolverPKG/Makefile
config.status: creating src/ParallelDistPKG/Makefile
config.status: creating src/TimeIntegrationPKG/Makefile
config.status: creating src/TopoManagerPKG/Makefile
config.status: creating src/UtilityPKG/Makefile
config.status: creating src/MultiTimePDEPKG/Makefile
config.status: creating utils/Makefile
config.status: creating utils/XyceCInterface/Makefile
config.status: creating src/test/Makefile
config.status: creating src/test/XyceAsLibrary/Makefile
config.status: creating src/test/DeviceInterface/Makefile
config.status: creating src/test/RandomTest/Makefile
config.status: creating src/test/FFTInterface/Makefile
config.status: creating src/test/LinearAlgebraTest/Makefile
config.status: creating src/test/XygraTestHarnesses/Makefile
config.status: creating src/test/GenExtTestHarnesses/Makefile
config.status: creating src/test/MPITest/Makefile
config.status: creating user_plugin/Makefile
config.status: creating distribution/CPackConfig.cmake
config.status: creating src/Xyce_config.h
config.status: src/Xyce_config.h is unchanged
config.status: executing depfiles commands
config.status: executing libtool commands
Making all in src
make[1]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src'
make  all-recursive
make[2]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src'
Making all in AnalysisPKG
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/AnalysisPKG'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/AnalysisPKG'
Making all in CircuitPKG
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/CircuitPKG'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/CircuitPKG'
Making all in DakotaLinkPKG
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DakotaLinkPKG'
  CXX      N_DAK_DakotaInterface.lo
  CXXLD    libDakotaLink.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DakotaLinkPKG'
Making all in DeviceModelPKG
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG'
Making all in Core
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/Core'
bison -oN_DEV_ReactionParser.cxx ./N_DEV_ReactionParser.yxx
flex -+ -oN_DEV_ReactionLexer.cxx ./N_DEV_ReactionLexer.l
./N_DEV_ReactionParser.yxx:59.1-13: warning: deprecated directive, use ‘%name-prefix’ [-Wdeprecated]
 %name-prefix="XyceDevice"
 ^^^^^^^^^^^^^
./N_DEV_ReactionParser.yxx:385.14-19: warning: unused value: $1 [-Wother]
 enhancement: SPECIE ';'
              ^^^^^^
./N_DEV_ReactionParser.yxx:55.9-27: warning: %define variable 'parser_class_name' requires '{...}' values [-Wdeprecated]
 %define "parser_class_name" "ReactionParser"
         ^^^^^^^^^^^^^^^^^^^
make  all-am
make[5]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/Core'
  CXX      N_DEV_CompositeParam.lo
  CXX      N_DEV_RegisterDevices.lo
  CXX      N_DEV_Algorithm.lo
  CXX      N_DEV_Print.lo
  CXX      N_DEV_Configuration.lo
  CXX      N_DEV_DeviceBlock.lo
  CXX      N_DEV_DeviceEntity.lo
  CXX      N_DEV_DeviceInstance.lo
  CXX      N_DEV_DeviceMgr.lo
  CXX      N_DEV_DeviceModel.lo
  CXX      N_DEV_DeviceOptions.lo
  CXX      N_DEV_DeviceSensitivities.lo
  CXX      N_DEV_DeviceState.lo
  CXX      N_DEV_DeviceSupport.lo
  CXX      N_DEV_DeviceMaster.lo
  CXX      N_DEV_Dump.lo
  CXX      N_DEV_InstanceName.lo
  CXX      N_DEV_MatrixLoadData.lo
  CXX      N_DEV_Message.lo
  CXX      N_DEV_NumericalJacobian.lo
  CXX      N_DEV_LaTexDoc.lo
  CXX      N_DEV_Op.lo
  CXX      N_DEV_OpBuilders.lo
  CXX      N_DEV_Param.lo
  CXX      N_DEV_Pars.lo
  CXX      N_DEV_RateConstantCalculators.lo
  CXX      N_DEV_Reaction.lo
  CXX      N_DEV_ReactionNetwork.lo
  CXX      N_DEV_Region.lo
  CXX      N_DEV_RegionData.lo
  CXX      N_DEV_RxnSet.lo
  CXX      N_DEV_ScalingVars.lo
  CXX      N_DEV_SolverState.lo
  CXX      N_DEV_Source.lo
  CXX      N_DEV_SourceData.lo
  CXX      N_DEV_Specie.lo
  CXX      N_DEV_SpecieSource.lo
  CXX      N_DEV_Units.lo
  CXX      N_DEV_ReactionParser.lo
  CXX      N_DEV_ReactionLexer.lo
  CXXLD    libDeviceCore.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[5]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/Core'
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/Core'
Making all in OpenModels
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/OpenModels'
  CXX      N_DEV_ACC.lo
  CXX      N_DEV_BJT.lo
  CXX      N_DEV_DAC.lo
  CXX      N_DEV_Bsrc.lo
  CXX      N_DEV_Battery.lo
  CXX      N_DEV_Diode.lo
  CXX      N_DEV_ADC.lo
  CXX      N_DEV_GeneralExternal.lo
  CXX      N_DEV_ISRC.lo
  CXX      N_DEV_Inductor.lo
  CXX      N_DEV_JFET.lo
  CXX      N_DEV_LTRA.lo
  CXX      N_DEV_MemristorPEM.lo
  CXX      N_DEV_MemristorTEAM.lo
  CXX      N_DEV_MemristorYakopcic.lo
  CXX      N_DEV_MESFET.lo
  CXX      N_DEV_MOSFET1.lo
  CXX      N_DEV_MOSFET2.lo
  CXX      N_DEV_MOSFET3.lo
  CXX      N_DEV_MOSFET6.lo
  CXX      N_DEV_MOSFET_B3.lo
  CXX      N_DEV_MOSFET_B4.lo
  CXX      N_DEV_MOSFET_B3SOI.lo
  CXX      N_DEV_MutIndLin.lo
  CXX      N_DEV_MutIndNonLin.lo
  CXX      N_DEV_MutIndNonLin2.lo
  CXX      N_DEV_Xygra.lo
  CXX      N_DEV_OpAmp.lo
  CXX      N_DEV_Digital.lo
  CXX      N_DEV_VDMOS.lo
  CXX      N_DEV_Capacitor.lo
  CXX      N_DEV_Resistor.lo
  CXX      N_DEV_Resistor3.lo
  CXX      N_DEV_ThermalResistor.lo
  CXX      N_DEV_SW.lo
  CXX      N_DEV_TRA.lo
  CXX      N_DEV_VCCS.lo
  CXX      N_DEV_Vcvs.lo
  CXX      N_DEV_Vsrc.lo
  CXX      N_DEV_ROM.lo
  CXX      N_DEV_ArtificialParameters.lo
  CXX      N_DEV_RegisterOpenDevices.lo
  CXX      N_DEV_PowerGrid.lo
  CXX      N_DEV_PowerGridBranch.lo
  CXX      N_DEV_PowerGridTransformer.lo
  CXX      N_DEV_PowerGridBusShunt.lo
  CXX      N_DEV_PowerGridGenBus.lo
  CXX      N_DEV_AntiWindupLimiter.lo
  CXX      N_DEV_TransLine.lo
  CXXLD    libOpenModels.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/OpenModels'
Making all in TCADModels
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/TCADModels'
  CXX      N_DEV_RegisterTCADDevices.lo
  CXX      N_DEV_PDEMeshContainer.lo
  CXX      N_DEV_PDE_2DMesh.lo
  CXX      N_DEV_PDE_Electrode.lo
  CXX      N_DEV_DiodePDE_DAE.lo
  CXX      N_DEV_DiodePDEInstance.lo
  CXX      N_DEV_2DPDE_Output.lo
  CXX      N_DEV_DiodePDEModel.lo
  CXX      N_DEV_2DPDE_DAE.lo
  CXX      N_DEV_2DPDEModel.lo
  CXX      N_DEV_2DPDEInstance.lo
  CXX      N_DEV_2DPDEParam.lo
  CXX      N_DEV_2DPDESetup.lo
  CXX      N_DEV_DevicePDEInstance.lo
  CXX      N_DEV_DopeInfo.lo
  CXX      N_DEV_MaterialLayer.lo
  CXX      N_DEV_MaterialSupport.lo
  CXX      N_DEV_BernouliSupport.lo
  CXXLD    libTCADModels.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/TCADModels'
Making all in EXTSC
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/EXTSC'
  CXX      N_DEV_ExternCodeInterface.lo
  CXX      N_DEV_XyceInterface.lo
  CXX      N_DEV_RegisterExternalDevices.lo
  CXX      N_DEV_ExternDevice.lo
  CXX      N_DEV_CharonInterface.lo
  CXX      N_DEV_1D_Interface.lo
  CXXLD    libEXT.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/EXTSC'
Making all in NeuronModels
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/NeuronModels'
  CXX      N_DEV_RegisterNeuronDevices.lo
  CXX      N_DEV_Neuron.lo
  CXX      N_DEV_Neuron2.lo
  CXX      N_DEV_Neuron3.lo
  CXX      N_DEV_Neuron4.lo
  CXX      N_DEV_Neuron6.lo
  CXX      N_DEV_Neuron7.lo
  CXX      N_DEV_Neuron5.lo
  CXX      N_DEV_Neuron8.lo
  CXX      N_DEV_Neuron9.lo
  CXX      N_DEV_NeuronPop1.lo
  CXX      N_DEV_Synapse.lo
  CXX      N_DEV_MembraneModel.lo
  CXX      N_DEV_Synapse2.lo
  CXX      N_DEV_Synapse3.lo
  CXX      N_DEV_Synapse4.lo
  CXX      N_DEV_MembranePassive.lo
  CXX      N_DEV_MembraneUserDefined.lo
  CXX      N_DEV_MembraneHH.lo
  CXX      N_DEV_MembraneCS.lo
  CXXLD    libNeuronModels.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/NeuronModels'
Making all in ADMS
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/ADMS'
  CXX      N_DEV_RegisterADMSDevices.lo
  CXX      N_DEV_ADMSHBT_X.lo
  CXX      N_DEV_ADMSPSP103VA.lo
  CXX      N_DEV_ADMSPSP102VA.lo
  CXX      N_DEV_ADMSJUNCAP200.lo
  CXX      N_DEV_ADMSbsimcmg.lo
  CXX      N_DEV_ADMSbsimcmg_110.lo
  CXX      N_DEV_ADMSbsimcmg_110_handopt.lo
  CXX      N_DEV_ADMSbsim6.lo
  CXX      N_DEV_ADMSvbic.lo
  CXX      N_DEV_ADMSvbic13.lo
  CXX      N_DEV_ADMSvbic13_handopt.lo
  CXX      N_DEV_ADMSvbic13_4t.lo
  CXX      N_DEV_ADMSbjt504va.lo
g++: fatal error: Killed signal terminated program cc1plus
compilation terminated.
make[4]: *** [Makefile:586: N_DEV_ADMSbsimcmg_110.lo] Error 1
make[4]: *** Waiting for unfinished jobs....
g++: fatal error: Killed signal terminated program cc1plus
compilation terminated.
make[4]: *** [Makefile:586: N_DEV_ADMSbsimcmg.lo] Error 1
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/ADMS'
make[3]: *** [Makefile:410: all-recursive] Error 1
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG'
make[2]: *** [Makefile:880: all-recursive] Error 1
make[2]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src'
make[1]: *** [Makefile:650: all] Error 2
make[1]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src'
make: *** [Makefile:520: all-recursive] Error 1
==> ERROR: A failure occurred in build().
    Aborting...
[phung@archlinux Xyce]$ 

Last edited by promach (2019-02-23 08:30:12)

Offline

#20 2019-02-23 07:39:45

Alad
Wiki Admin/IRC Op
From: Bagelstan
Registered: 2014-05-04
Posts: 2,407
Website

Re: [REQUEST] Xyce circuit simulator

Please use code tags instead of quote tags. With latter you need to scroll the whole page, instead of one box.

If someone files a bug for the -complex cmake flags, I'm willing to add them. (I'm however not willing to add 20 other configuration flags without details as to how they differ from the defaults.)

Regarding the 'killed', it looks like you ran out of memory.

edit: regarding the test failures, because trilinos didn't have a release in a long time, some commits need to be backported to work with newer compilers, e.g. https://github.com/trilinos/Trilinos/co … e4a7f97f14.

Considering neither me (or Arch!) has the resources to build these packages on a regular basis, I will tackle it together with some other issues later on.

Last edited by Alad (2019-02-23 07:46:24)


Mods are just community members who have the occasionally necessary option to move threads around and edit posts. -- Trilby

Offline

#21 2019-02-24 04:53:33

jamespharvey20
Member
Registered: 2015-06-09
Posts: 129

Re: [REQUEST] Xyce circuit simulator

In your Xyce PKGBUILD, it would be worth changing

./configure \
...

To

./configure \
--prefix=/usr \
...

Otherwise, the package installs everything into "/usr/local/" instead of just "/usr/".  Packages shouldn't be installed into local.  It shouldn't make a difference on it running properly, it's more of a being technically accurate thing.  It should be added to the PKGBUILD before being submitted to the AUR.

Regarding the "libtool" message, I doubt it's needed.  If it's a problem, Xyce won't start.  In that case, rebuilding using the above PKGBUILD change should fix it.

EDIT: Added missing trailing slash.

Last edited by jamespharvey20 (2019-02-24 09:39:24)

Offline

#22 2019-02-24 05:08:50

promach
Member
Registered: 2016-05-18
Posts: 96

Re: [REQUEST] Xyce circuit simulator

ok, I will build it again using your suggestion later today.

For those who are concerned with the libtool warning , see the following successful build log of xyce package. It had not been tested and run yet.

libtool: warning: remember to run 'libtool --finish /usr/local/lib'

[phung@archlinux Xyce]$ makepkg -s
==> Making package: Xyce 6.10-1 (Sun 24 Feb 2019 12:03:51 PM +08)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
  -> Found Xyce-6.10.tar.gz
==> Validating source files with md5sums...
    Xyce-6.10.tar.gz ... Skipped
==> Extracting sources...
  -> Extracting Xyce-6.10.tar.gz with bsdtar
==> Removing existing $pkgdir/ directory...
==> Starting build()...
checking whether make supports nested variables... yes
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking target system type... x86_64-unknown-linux-gnu
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether to build the xyce binary... yes
checking whether to build xyce shareable... no
checking whether the C++ compiler works... yes
checking for C++ compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C++ compiler... yes
checking whether mpicxx accepts -g... yes
checking whether make supports the include directive... yes (GNU style)
checking dependency style of mpicxx... gcc3
checking whether we are using the GNU C compiler... yes
checking whether mpicc accepts -g... yes
checking for mpicc option to accept ISO C89... none needed
checking whether mpicc understands -c and -o together... yes
checking dependency style of mpicc... gcc3
checking whether we are using the GNU Fortran 77 compiler... yes
checking whether mpif77 accepts -g... yes
checking for flex... flex
checking lex output file root... lex.yy
checking lex library... -lfl
checking whether yytext is a pointer... yes
checking for bison... bison
checking for bison version 3.2... yes
checking whether make sets $(MAKE)... (cached) yes
checking how to print strings... printf
checking for a sed that does not truncate output... /usr/bin/sed
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for fgrep... /usr/bin/grep -F
checking for ld used by mpicc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1572864
checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for ar... ar
checking for archiver @FILE support... @
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from mpicc object... ok
checking for sysroot... no
checking for a working dd... /usr/bin/dd
checking how to truncate binary pipes... /usr/bin/dd bs=4096 count=1
checking for mt... no
checking if : is a manifest tool... no
checking how to run the C preprocessor... mpicc -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for dlfcn.h... yes
checking for objdir... .libs
checking if mpicc supports -fno-rtti -fno-exceptions... no
checking for mpicc option to produce PIC... -fPIC -DPIC
checking if mpicc PIC flag -fPIC -DPIC works... yes
checking if mpicc static flag -static works... no
checking if mpicc supports -c -o file.o... yes
checking if mpicc supports -c -o file.o... (cached) yes
checking whether the mpicc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... no
checking whether to build static libraries... yes
checking how to run the C++ preprocessor... mpicxx -E
checking for ld used by mpicxx... /usr/bin/ld -m elf_x86_64
checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
checking whether the mpicxx linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking for mpicxx option to produce PIC... -fPIC -DPIC
checking if mpicxx PIC flag -fPIC -DPIC works... yes
checking if mpicxx static flag -static works... no
checking if mpicxx supports -c -o file.o... yes
checking if mpicxx supports -c -o file.o... (cached) yes
checking whether the mpicxx linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... (cached) GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... no
checking whether to build static libraries... yes
checking for mpif77 option to produce PIC... -fPIC
checking if mpif77 PIC flag -fPIC works... yes
checking if mpif77 static flag -static works... no
checking if mpif77 supports -c -o file.o... yes
checking if mpif77 supports -c -o file.o... (cached) yes
checking whether the mpif77 linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... (cached) GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking for grep that handles long lines and -e... (cached) /usr/bin/grep
checking whether your C++ compiler is the Intel compiler version less than 12... no
checking how to get verbose linking output from mpif77... -v
checking for Fortran 77 libraries of mpif77...  -L/lib -L/usr/lib/openmpi -L/usr/lib/gcc/x86_64-pc-linux-gnu/8.2.1 -L/usr/lib/gcc/x86_64-pc-linux-gnu/8.2.1/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/8.2.1/../../.. -lmpi_usempif08 -lmpi_usempi_ignore_tkr -lmpi_mpifh -lmpi -lgfortran -lm -lquadmath -lpthread
checking for library containing sqrt... -lm
checking for library containing dcopy... -lblas
checking for library containing dgetrs... -llapack
checking for ANSI C header files... (cached) yes
checking whether the compiler implements namespaces... yes
checking whether the compiler supports Standard Template Library... yes
checking for unistd.h... (cached) yes
checking values.h usability... yes
checking values.h presence... yes
checking for values.h... yes
checking limits.h usability... yes
checking limits.h presence... yes
checking for limits.h... yes
checking float.h usability... yes
checking float.h presence... yes
checking for float.h... yes
checking math.h usability... yes
checking math.h presence... yes
checking for math.h... yes
checking cmath usability... yes
checking cmath presence... yes
checking for cmath... yes
checking climits usability... yes
checking climits presence... yes
checking for climits... yes
checking ostream usability... yes
checking ostream presence... yes
checking for ostream... yes
checking iostream usability... yes
checking iostream presence... yes
checking for iostream... yes
checking ostream.h usability... no
checking ostream.h presence... no
checking for ostream.h... no
checking fstream usability... yes
checking fstream presence... yes
checking for fstream... yes
checking cstdio usability... yes
checking cstdio presence... yes
checking for cstdio... yes
checking algorithm usability... yes
checking algorithm presence... yes
checking for algorithm... yes
checking cctype usability... yes
checking cctype presence... yes
checking for cctype... yes
checking cstdlib usability... yes
checking cstdlib presence... yes
checking for cstdlib... yes
checking cstring usability... yes
checking cstring presence... yes
checking for cstring... yes
checking for strings.h... (cached) yes
checking for string.h... (cached) yes
checking unordered_map usability... yes
checking unordered_map presence... yes
checking for unordered_map... yes
checking unordered_set usability... yes
checking unordered_set presence... yes
checking for unordered_set... yes
checking functional usability... yes
checking functional presence... yes
checking for functional... yes
checking tr1/unordered_map usability... yes
checking tr1/unordered_map presence... yes
checking for tr1/unordered_map... yes
checking tr1/unordered_set usability... yes
checking tr1/unordered_set presence... yes
checking for tr1/unordered_set... yes
checking tr1/functional usability... yes
checking tr1/functional presence... yes
checking for tr1/functional... yes
checking sys/resource.h usability... yes
checking sys/resource.h presence... yes
checking for sys/resource.h... yes
checking for stdlib.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for library containing dlopen... -ldl
checking for unistd.h... (cached) yes
checking malloc.h usability... yes
checking malloc.h presence... yes
checking for malloc.h... yes
checking pwd.h usability... yes
checking pwd.h presence... yes
checking for pwd.h... yes
checking sys/utsname.h usability... yes
checking sys/utsname.h presence... yes
checking for sys/utsname.h... yes
checking for mallinfo... yes
checking for getpwuid... yes
checking for gethostname... yes
checking for getdomainname... yes
checking for uname... yes
checking for sysconf... yes
checking for /proc/self/stat... yes
checking mathimf.h usability... no
checking mathimf.h presence... no
checking for mathimf.h... no
checking whether the compiler supports isnan and isinf... yes
checking for library containing MPI_Bcast... none required
checking for amd_valid in -lamd... yes
checking for main in -lteuchoscore... yes
configure: WARNING: Unable to find export file: Makefile.export.Teuchos.  Using predefined library dependencies.
checking for main in -lteuchoscore... (cached) yes
checking for main in -lteuchosremainder... yes
checking for main in -lteuchosnumerics... yes
checking for main in -lteuchoscomm... yes
checking for main in -lteuchosparameterlist... yes
checking for trilinos_klu_defaults in -ltrilinosss... yes
configure: WARNING: Unable to find export file: Makefile.export.Triutils.  Using predefined library dependencies.
checking for main in -ltriutils... yes
configure: WARNING: Unable to find export file: Makefile.export.Epetra.  Using predefined library dependencies.
checking for main in -lepetra... yes
configure: WARNING: Unable to find export file: Makefile.export.EpetraExt.  Using predefined library dependencies.
checking for main in -lepetraext... yes
checking EpetraExt_AMD_CrsGraph.h usability... yes
checking EpetraExt_AMD_CrsGraph.h presence... yes
checking for EpetraExt_AMD_CrsGraph.h... yes
checking whether HAVE_TEUCHOS_COMPLEX is declared... yes
checking whether HAVE_LIBPARMETIS is declared... no
checking for Zoltan_LB_Balance in -lzoltan... yes
configure: WARNING: Unable to find export file: Makefile.export.Isorropia.  Using predefined library dependencies.
checking for main in -lisorropia... yes
checking Amesos_Umfpack.h usability... no
checking Amesos_Umfpack.h presence... no
checking for Amesos_Umfpack.h... no
configure: WARNING: Unable to find export file: Makefile.export.Amesos.  Using predefined library dependencies.
checking for main in -lamesos... yes
configure: WARNING: Unable to find export file: Makefile.export.TrilinosCouplings.  Using predefined library dependencies.
checking for main in -ltrilinoscouplings... yes
configure: WARNING: Unable to find export file: Makefile.export.Ifpack.  Using predefined library dependencies.
checking for main in -lifpack... yes
configure: WARNING: Unable to find export file: Makefile.export.AztecOO.  Using predefined library dependencies.
checking for main in -laztecoo... yes
configure: WARNING: Unable to find export file: Makefile.export.Belos.  Using predefined library dependencies.
checking for main in -lbelos... yes
checking for main in -lbelosepetra... yes
configure: WARNING: Unable to find export file: Makefile.export.NOX.  Using predefined library dependencies.
checking for main in -lnox... yes
checking for main in -lloca... yes
checking whether the NOX abstract vector length is a NOX::size_type... yes
checking whether the NOX abstract solver has getSolverStatistics()... no
checking Epetra_MultiVector.h usability... yes
checking Epetra_MultiVector.h presence... yes
checking for Epetra_MultiVector.h... yes
checking Ifpack_CrsRiluk.h usability... yes
checking Ifpack_CrsRiluk.h presence... yes
checking for Ifpack_CrsRiluk.h... yes
checking Amesos_Klu.h usability... yes
checking Amesos_Klu.h presence... yes
checking for Amesos_Klu.h... yes
checking NOX_Abstract_Vector.H usability... yes
checking NOX_Abstract_Vector.H presence... yes
checking for NOX_Abstract_Vector.H... yes
checking LOCA_Parameter_Vector.H usability... yes
checking LOCA_Parameter_Vector.H presence... yes
checking for LOCA_Parameter_Vector.H... yes
checking Sacado.hpp usability... yes
checking Sacado.hpp presence... yes
checking for Sacado.hpp... yes
checking whether math.h defines M_PI... yes
checking whether use of stl strings and pairs requires including pair.h... no
checking for strcasecmp... yes
checking for getopt... yes
checking for drand48... yes
checking for erf... yes
checking for erfc... yes
checking mkl_dfti.h usability... no
checking mkl_dfti.h presence... no
checking for mkl_dfti.h... no
checking fftw3.h usability... yes
checking fftw3.h presence... yes
checking for fftw3.h... yes
checking for library containing fftw_plan_dft_1d... -lfftw3
checking whether your gcc has a braindamaged STL algorithm random_shuffle... no
checking whether your STL algorithm includes iota... yes
checking for main in -lARAEnv... no
-lfftw3 -lloca -lnox -lbelosepetra -lbelos -laztecoo -lifpack -ltrilinoscouplings -lamesos -lisorropia -lzoltan -lepetraext -lepetra -ltriutils -ltrilinosss -lteuchosparameterlist -lteuchoscomm -lteuchosnumerics -lteuchosremainder -lteuchoscore -lamd -ldl -llapack -lblas -lm -L/lib -L/usr/lib/openmpi -L/usr/lib/gcc/x86_64-pc-linux-gnu/8.2.1 -L/usr/lib/gcc/x86_64-pc-linux-gnu/8.2.1/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/8.2.1/../../.. -lmpi_usempif08 -lmpi_usempi_ignore_tkr -lmpi_mpifh -lmpi -lgfortran -lm -lquadmath -lpthread
checking whether libraries (-lfftw3 -lloca -lnox -lbelosepetra -lbelos -laztecoo -lifpack -ltrilinoscouplings -lamesos -lisorropia -lzoltan -lepetraext -lepetra -ltriutils -ltrilinosss -lteuchosparameterlist -lteuchoscomm -lteuchosnumerics -lteuchosremainder -lteuchoscore -lamd -ldl -llapack -lblas -lm   -L/lib -L/usr/lib/openmpi -L/usr/lib/gcc/x86_64-pc-linux-gnu/8.2.1 -L/usr/lib/gcc/x86_64-pc-linux-gnu/8.2.1/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/8.2.1/../../.. -lmpi_usempif08 -lmpi_usempi_ignore_tkr -lmpi_mpifh -lmpi -lgfortran -lm -lquadmath -lpthread ) will link... yes
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating src/Makefile
config.status: creating src/AnalysisPKG/Makefile
config.status: creating src/CircuitPKG/Makefile
config.status: creating src/IOInterfacePKG/Makefile
config.status: creating src/IOInterfacePKG/Output/Makefile
config.status: creating src/DakotaLinkPKG/Makefile
config.status: creating src/DeviceModelPKG/Makefile
config.status: creating src/DeviceModelPKG/Core/Makefile
config.status: creating src/DeviceModelPKG/OpenModels/Makefile
config.status: creating src/DeviceModelPKG/TCADModels/Makefile
config.status: creating src/DeviceModelPKG/NeuronModels/Makefile
config.status: creating src/DeviceModelPKG/ADMS/Makefile
config.status: creating src/DeviceModelPKG/EXTSC/Makefile
config.status: creating src/ErrorHandlingPKG/Makefile
config.status: creating src/LinearAlgebraServicesPKG/Makefile
config.status: creating src/LinearAlgebraServicesPKG/ksparse/Makefile
config.status: creating src/LoaderServicesPKG/Makefile
config.status: creating src/NonlinearSolverPKG/Makefile
config.status: creating src/ParallelDistPKG/Makefile
config.status: creating src/TimeIntegrationPKG/Makefile
config.status: creating src/TopoManagerPKG/Makefile
config.status: creating src/UtilityPKG/Makefile
config.status: creating src/MultiTimePDEPKG/Makefile
config.status: creating utils/Makefile
config.status: creating utils/XyceCInterface/Makefile
config.status: creating src/test/Makefile
config.status: creating src/test/XyceAsLibrary/Makefile
config.status: creating src/test/DeviceInterface/Makefile
config.status: creating src/test/RandomTest/Makefile
config.status: creating src/test/FFTInterface/Makefile
config.status: creating src/test/LinearAlgebraTest/Makefile
config.status: creating src/test/XygraTestHarnesses/Makefile
config.status: creating src/test/GenExtTestHarnesses/Makefile
config.status: creating src/test/MPITest/Makefile
config.status: creating user_plugin/Makefile
config.status: creating distribution/CPackConfig.cmake
config.status: creating src/Xyce_config.h
config.status: src/Xyce_config.h is unchanged
config.status: executing depfiles commands
config.status: executing libtool commands
Making all in src
make[1]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src'
make  all-recursive
make[2]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src'
Making all in AnalysisPKG
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/AnalysisPKG'
  CXX      N_ANP_AC.lo
  CXX      N_ANP_AnalysisBase.lo
  CXX      N_ANP_AnalysisManager.lo
  CXX      N_ANP_DCSweep.lo
  CXX      N_ANP_EmbeddedSampling.lo
  CXX      N_ANP_HB.lo
  CXX      N_ANP_MOR.lo
  CXX      N_ANP_MPDE.lo
  CXX      N_ANP_MixedSignalManager.lo
  CXX      N_ANP_NOISE.lo
  CXX      N_ANP_Op.lo
  CXX      N_ANP_OpBuilders.lo
  CXX      N_ANP_OutputMgrAdapter.lo
  CXX      N_ANP_ROL.lo
  CXX      N_ANP_RegisterAnalysis.lo
  CXX      N_ANP_SecondLevelManager.lo
  CXX      N_ANP_Step.lo
  CXX      N_ANP_Sampling.lo
  CXX      N_ANP_Transient.lo
  CXX      N_ANP_UQSupport.lo
  CXXLD    libAnalysis.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/AnalysisPKG'
Making all in CircuitPKG
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/CircuitPKG'
  CXX      N_CIR_Xyce.lo
  CXX      N_CIR_SecondLevelSimulator.lo
  CXX      N_CIR_MixedSignalSimulator.lo
  CXX      N_CIR_Xygra.lo
  CXX      N_CIR_GenCouplingSimulator.lo
  CXXLD    libCircuit.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/CircuitPKG'
Making all in DakotaLinkPKG
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DakotaLinkPKG'
  CXX      N_DAK_DakotaInterface.lo
  CXXLD    libDakotaLink.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DakotaLinkPKG'
Making all in DeviceModelPKG
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG'
Making all in Core
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/Core'
make  all-am
make[5]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/Core'
  CXX      N_DEV_Algorithm.lo
  CXX      N_DEV_Print.lo
  CXX      N_DEV_CompositeParam.lo
  CXX      N_DEV_Configuration.lo
  CXX      N_DEV_DeviceEntity.lo
  CXX      N_DEV_DeviceInstance.lo
  CXX      N_DEV_DeviceModel.lo
  CXX      N_DEV_DeviceMgr.lo
  CXX      N_DEV_DeviceSensitivities.lo
  CXX      N_DEV_DeviceSupport.lo
  CXX      N_DEV_DeviceMaster.lo
  CXX      N_DEV_Dump.lo
  CXX      N_DEV_MatrixLoadData.lo
  CXX      N_DEV_Message.lo
  CXX      N_DEV_NumericalJacobian.lo
  CXX      N_DEV_LaTexDoc.lo
  CXX      N_DEV_Op.lo
  CXX      N_DEV_OpBuilders.lo
  CXX      N_DEV_Pars.lo
  CXX      N_DEV_RateConstantCalculators.lo
  CXX      N_DEV_Reaction.lo
  CXX      N_DEV_ReactionNetwork.lo
  CXX      N_DEV_Region.lo
  CXX      N_DEV_RegionData.lo
  CXX      N_DEV_RxnSet.lo
  CXX      N_DEV_Source.lo
  CXX      N_DEV_SourceData.lo
  CXX      N_DEV_SpecieSource.lo
  CXX      N_DEV_ReactionParser.lo
  CXX      N_DEV_ReactionLexer.lo
  CXXLD    libDeviceCore.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[5]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/Core'
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/Core'
Making all in OpenModels
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/OpenModels'
  CXX      N_DEV_BJT.lo
  CXX      N_DEV_ACC.lo
  CXX      N_DEV_DAC.lo
  CXX      N_DEV_ADC.lo
  CXX      N_DEV_Bsrc.lo
  CXX      N_DEV_Battery.lo
  CXX      N_DEV_Diode.lo
  CXX      N_DEV_GeneralExternal.lo
  CXX      N_DEV_ISRC.lo
  CXX      N_DEV_Inductor.lo
  CXX      N_DEV_JFET.lo
  CXX      N_DEV_LTRA.lo
  CXX      N_DEV_MemristorPEM.lo
  CXX      N_DEV_MemristorTEAM.lo
  CXX      N_DEV_MemristorYakopcic.lo
  CXX      N_DEV_MESFET.lo
  CXX      N_DEV_MOSFET1.lo
  CXX      N_DEV_MOSFET2.lo
  CXX      N_DEV_MOSFET3.lo
  CXX      N_DEV_MOSFET6.lo
  CXX      N_DEV_MOSFET_B3.lo
  CXX      N_DEV_MOSFET_B4.lo
  CXX      N_DEV_MOSFET_B3SOI.lo
  CXX      N_DEV_MutIndLin.lo
  CXX      N_DEV_MutIndNonLin.lo
  CXX      N_DEV_MutIndNonLin2.lo
  CXX      N_DEV_Xygra.lo
  CXX      N_DEV_OpAmp.lo
  CXX      N_DEV_Digital.lo
  CXX      N_DEV_VDMOS.lo
  CXX      N_DEV_Capacitor.lo
  CXX      N_DEV_Resistor.lo
  CXX      N_DEV_Resistor3.lo
  CXX      N_DEV_ThermalResistor.lo
  CXX      N_DEV_SW.lo
  CXX      N_DEV_TRA.lo
  CXX      N_DEV_VCCS.lo
  CXX      N_DEV_Vcvs.lo
  CXX      N_DEV_Vsrc.lo
  CXX      N_DEV_ROM.lo
  CXX      N_DEV_ArtificialParameters.lo
  CXX      N_DEV_RegisterOpenDevices.lo
  CXX      N_DEV_PowerGrid.lo
  CXX      N_DEV_PowerGridBranch.lo
  CXX      N_DEV_PowerGridTransformer.lo
  CXX      N_DEV_PowerGridBusShunt.lo
  CXX      N_DEV_PowerGridGenBus.lo
  CXX      N_DEV_AntiWindupLimiter.lo
  CXX      N_DEV_TransLine.lo
  CXXLD    libOpenModels.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/OpenModels'
Making all in TCADModels
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/TCADModels'
  CXX      N_DEV_RegisterTCADDevices.lo
  CXX      N_DEV_PDE_2DMesh.lo
  CXX      N_DEV_PDE_Electrode.lo
  CXX      N_DEV_DiodePDE_DAE.lo
  CXX      N_DEV_DiodePDEModel.lo
  CXX      N_DEV_DiodePDEInstance.lo
  CXX      N_DEV_2DPDE_Output.lo
  CXX      N_DEV_2DPDE_DAE.lo
  CXX      N_DEV_2DPDEModel.lo
  CXX      N_DEV_2DPDEInstance.lo
  CXX      N_DEV_2DPDEParam.lo
  CXX      N_DEV_2DPDESetup.lo
  CXX      N_DEV_DevicePDEInstance.lo
  CXX      N_DEV_DopeInfo.lo
  CXX      N_DEV_MaterialLayer.lo
  CXX      N_DEV_MaterialSupport.lo
  CXXLD    libTCADModels.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/TCADModels'
Making all in EXTSC
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/EXTSC'
  CXX      N_DEV_RegisterExternalDevices.lo
  CXX      N_DEV_ExternDevice.lo
  CXX      N_DEV_XyceInterface.lo
  CXX      N_DEV_CharonInterface.lo
  CXXLD    libEXT.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/EXTSC'
Making all in NeuronModels
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/NeuronModels'
  CXX      N_DEV_RegisterNeuronDevices.lo
  CXX      N_DEV_Neuron.lo
  CXX      N_DEV_Neuron2.lo
  CXX      N_DEV_Neuron3.lo
  CXX      N_DEV_Neuron4.lo
  CXX      N_DEV_Neuron5.lo
  CXX      N_DEV_Neuron6.lo
  CXX      N_DEV_Neuron7.lo
  CXX      N_DEV_Neuron8.lo
  CXX      N_DEV_Neuron9.lo
  CXX      N_DEV_NeuronPop1.lo
  CXX      N_DEV_Synapse.lo
  CXX      N_DEV_Synapse2.lo
  CXX      N_DEV_Synapse3.lo
  CXX      N_DEV_Synapse4.lo
  CXX      N_DEV_MembranePassive.lo
  CXX      N_DEV_MembraneUserDefined.lo
  CXX      N_DEV_MembraneHH.lo
  CXX      N_DEV_MembraneCS.lo
  CXXLD    libNeuronModels.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/NeuronModels'
Making all in ADMS
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/ADMS'
  CXX      N_DEV_RegisterADMSDevices.lo
  CXX      N_DEV_ADMSHBT_X.lo
  CXX      N_DEV_ADMSPSP103VA.lo
  CXX      N_DEV_ADMSPSP102VA.lo
  CXX      N_DEV_ADMSJUNCAP200.lo
  CXX      N_DEV_ADMSbsimcmg.lo
  CXX      N_DEV_ADMSbsimcmg_110.lo
  CXX      N_DEV_ADMSbsimcmg_110_handopt.lo
  CXX      N_DEV_ADMSbsim6.lo
  CXX      N_DEV_ADMSvbic.lo
  CXX      N_DEV_ADMSvbic13.lo
  CXX      N_DEV_ADMSvbic13_handopt.lo
  CXX      N_DEV_ADMSvbic13_4t.lo
  CXX      N_DEV_ADMSbjt504va.lo
  CXX      N_DEV_ADMSbjt504tva.lo
  CXX      N_DEV_ADMSmvs_2_0_0_etsoi.lo
  CXX      N_DEV_ADMSmvs_2_0_0_hemt.lo
  CXX      N_DEV_ADMShicumL2va.lo
  CXX      N_DEV_ADMShic0_full.lo
  CXXLD    libADMS.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/ADMS'
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG'
make[4]: Nothing to be done for 'all-am'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG'
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG'
Making all in ErrorHandlingPKG
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/ErrorHandlingPKG'
  CXX      N_ERH_Message.lo
  CXX      N_ERH_Messenger.lo
  CXX      N_ERH_ErrorMgr.lo
  CXX      N_ERH_Progress.lo
  CXXLD    libErrorHandling.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/ErrorHandlingPKG'
Making all in IOInterfacePKG
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/IOInterfacePKG'
Making all in Output
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/IOInterfacePKG/Output'
  CXX      N_IO_OutputFileBase.lo
  CXX      N_IO_OutputPrn.lo
  CXX      N_IO_MeasureRiseFallDelay.lo
  CXX      N_IO_OutputCsd.lo
  CXX      N_IO_OutputHDF5.lo
  CXX      N_IO_MeasureManager.lo
  CXX      N_IO_MeasureBase.lo
  CXX      N_IO_MeasureAverage.lo
  CXX      N_IO_MeasureDuty.lo
  CXX      N_IO_MeasureFrequency.lo
  CXX      N_IO_MeasureMax.lo
  CXX      N_IO_MeasureMin.lo
  CXX      N_IO_MeasureOffTime.lo
  CXX      N_IO_MeasureOnTime.lo
  CXX      N_IO_MeasurePeakToPeak.lo
  CXX      N_IO_MeasureRMS.lo
  CXX      N_IO_MeasureFindWhen.lo
  CXX      N_IO_MeasureEquationEvaluation.lo
  CXX      N_IO_MeasureDerivativeEvaluation.lo
  CXX      N_IO_MeasureIntegralEvaluation.lo
  CXX      N_IO_MeasureRelativeError.lo
  CXX      N_IO_MeasureFourier.lo
  CXX      N_IO_Remeasure.lo
  CXXLD    libOutput.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/IOInterfacePKG/Output'
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/IOInterfacePKG'
  CXX      N_IO_CmdParse.lo
  CXX      N_IO_DistToolBase.lo
  CXX      N_IO_NetlistImportTool.lo
  CXX      N_IO_DistToolFactory.lo
  CXX      N_IO_DistToolDefault.lo
  CXX      N_IO_DistToolDevBalanced.lo
  CXX      N_IO_DistToolFlatRoundRobin.lo
  CXX      N_IO_ExtOutWrapper.lo
  CXX      N_IO_MORAnalysisTool.lo
  CXX      N_IO_OutputMgr.lo
  CXX      N_IO_LoadManager.lo
  CXX      N_IO_OutputResponse.lo
  CXX      N_IO_OutputMacroResults.lo
  CXX      N_IO_OutputMOR.lo
  CXX      N_IO_OutputROM.lo
  CXX      N_IO_OutputResults.lo
  CXX      N_IO_PrintDeviceCount.lo
  CXX      N_IO_InitialConditions.lo
  CXX      N_IO_OutputterExternal.lo
  CXX      N_IO_OutputterLocal.lo
  CXX      N_IO_OutputterFrequencyCSV.lo
  CXX      N_IO_OutputterFrequencyPrn.lo
  CXX      N_IO_OutputterFrequencyProbe.lo
  CXX      N_IO_OutputterFrequencyRaw.lo
  CXX      N_IO_OutputterFrequencyRawASCII.lo
  CXX      N_IO_OutputterFrequencyTecplot.lo
  CXX      N_IO_OutputterHBFreqCSV.lo
  CXX      N_IO_OutputterHBTimeCSV.lo
  CXX      N_IO_OutputterHBFreqPrn.lo
  CXX      N_IO_OutputterHBTimePrn.lo
  CXX      N_IO_OutputterHBFreqTecplot.lo
  CXX      N_IO_OutputterHBTimeTecplot.lo
  CXX      N_IO_OutputterHDF5.lo
  CXX      N_IO_OutputterHomotopy.lo
  CXX      N_IO_OutputterHomotopyCSV.lo
  CXX      N_IO_OutputterHomotopyPrn.lo
  CXX      N_IO_OutputterHomotopyProbe.lo
  CXX      N_IO_OutputterHomotopyTecplot.lo
  CXX      N_IO_OutputterMPDEPrn.lo
  CXX      N_IO_OutputterMPDETecplot.lo
  CXX      N_IO_OutputterOverrideRaw.lo
  CXX      N_IO_OutputterOverrideRawASCII.lo
  CXX      N_IO_OutputterNoisePrn.lo
  CXX      N_IO_OutputterNoiseCSV.lo
  CXX      N_IO_OutputterNoiseTecplot.lo
  CXX      N_IO_OutputterSensitivityPrn.lo
  CXX      N_IO_OutputterSensitivityCSV.lo
  CXX      N_IO_OutputterSensitivityTecplot.lo
  CXX      N_IO_OutputterSensitivityDakota.lo
  CXX      N_IO_OutputterTimeCSV.lo
  CXX      N_IO_OutputterTimePrn.lo
  CXX      N_IO_OutputterTimeProbe.lo
  CXX      N_IO_OutputterTimeRaw.lo
  CXX      N_IO_OutputterTimeRawASCII.lo
  CXX      N_IO_OutputterTimeTecplot.lo
  CXX      N_IO_Probe.lo
  CXX      N_IO_Tecplot.lo
  CXX      N_IO_OutputterAC.lo
  CXX      N_IO_OutputterNoise.lo
  CXX      N_IO_OutputterDC.lo
  CXX      N_IO_OutputterHB.lo
  CXX      N_IO_OutputterMPDE.lo
  CXX      N_IO_OutputterRawOverride.lo
  CXX      N_IO_OutputterSensitivity.lo
  CXX      N_IO_OutputterTransient.lo
  CXX      N_IO_RestartMgr.lo
  CXX      N_IO_SpiceSeparatedFieldTool.lo
  CXX      N_IO_CircuitMetadata.lo
  CXX      N_IO_CircuitBlock.lo
  CXX      N_IO_CircuitContext.lo
  CXX      N_IO_DeviceBlock.lo
  CXX      N_IO_OptionBlock.lo
  CXX      N_IO_ParameterBlock.lo
  CXX      N_IO_Report.lo
  CXX      N_IO_Outputter.lo
  CXX      N_IO_FunctionBlock.lo
  CXX      N_IO_RestartNode.lo
  CXX      N_IO_Op.lo
  CXX      N_IO_OpBuilders.lo
  CXX      N_IO_ActiveOutput.lo
  CXX      N_IO_mmio.lo
  CXX      N_IO_PkgOptionsMgr.lo
  CXX      N_IO_FourierMgr.lo
  CXX      N_IO_ParsingHelpers.lo
  CXXLD    libIOInterface.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/IOInterfacePKG'
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/IOInterfacePKG'
Making all in LinearAlgebraServicesPKG
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/LinearAlgebraServicesPKG'
Making all in ksparse
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/LinearAlgebraServicesPKG/ksparse'
  CC       alloc.lo
  CXX      Epetra_CrsKundertSparse.lo
  CC       driver.lo
  CC       smplinkrows.lo
  CC       spalloc.lo
  CC       spbuild.lo
  CC       spfactor.lo
  CC       spoutput.lo
alloc.c: In function ‘bye_bye’:
alloc.c:56:6: warning: type of ‘i’ defaults to ‘int’ [-Wimplicit-int]
 void bye_bye(i)
      ^~~~~~~
alloc.c: In function ‘tmalloc’:
alloc.c:79:9: warning: implicit declaration of function ‘exit’ [-Wimplicit-function-declaration]
         exit(EXIT_BAD);
         ^~~~
alloc.c:79:9: warning: incompatible implicit declaration of built-in function ‘exit’
alloc.c:79:9: note: include ‘<stdlib.h>’ or provide a declaration of ‘exit’
alloc.c:41:1:
+#include <stdlib.h>
 #ifdef DEBUG_MALLOC
alloc.c:79:9:
         exit(EXIT_BAD);
         ^~~~
alloc.c: In function ‘trealloc’:
alloc.c:130:9: warning: incompatible implicit declaration of built-in function ‘exit’
         exit(EXIT_BAD);
         ^~~~
alloc.c:130:9: note: include ‘<stdlib.h>’ or provide a declaration of ‘exit’
  CC       spsmp.lo
  CC       spsolve.lo
  CC       sputils.lo
  CXXLD    libksparse.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/LinearAlgebraServicesPKG/ksparse'
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/LinearAlgebraServicesPKG'
  CXX      N_LAS_SimpleSolver.lo
  CXX      N_LAS_BelosSolver.lo
  CXX      N_LAS_AmesosSolver.lo
  CXX      N_LAS_KSparseSolver.lo
  CXX      N_LAS_Problem.lo
  CXX      N_LAS_AztecOOSolver.lo
  CXX      N_LAS_MultiVector.lo
  CXX      N_LAS_Matrix.lo
  CXX      N_LAS_FilteredMatrix.lo
  CXX      N_LAS_FilteredMultiVector.lo
  CXX      N_LAS_MOROperators.lo
  CXX      N_LAS_QueryUtil.lo
  CXX      N_LAS_System.lo
  CXX      N_LAS_SystemHelpers.lo
  CXX      N_LAS_Builder.lo
  CXX      N_LAS_ESBuilder.lo
  CXX      N_LAS_HBBuilder.lo
  CXX      N_LAS_Vector.lo
  CXX      N_LAS_TransformTool.lo
  CXX      N_LAS_LAFactory.lo
  CXX      N_LAS_TranSolverFactory.lo
  CXX      N_LAS_BlockVector.lo
  CXX      N_LAS_BlockMatrix.lo
  CXX      N_LAS_BlockSystemHelpers.lo
  CXX      N_LAS_EpetraHelpers.lo
  CXX      N_LAS_IfpackPrecond.lo
  CXX      N_LAS_ESDirectSolver.lo
  CXX      N_LAS_ESSolverFactory.lo
  CXX      N_LAS_HBDirectSolver.lo
  CXX      N_LAS_HBBlockJacobiPrecond.lo
  CXX      N_LAS_HBBlockJacobiEpetraOperator.lo
  CXX      N_LAS_HBPrecondFactory.lo
  CXX      N_LAS_HBSolverFactory.lo
  CXX      N_LAS_TrilinosPrecondFactory.lo
  CXXLD    libLinearAlgebraServices.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/LinearAlgebraServicesPKG'
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/LinearAlgebraServicesPKG'
Making all in LoaderServicesPKG
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/LoaderServicesPKG'
  CXX      N_LOA_ESLoader.lo
  CXX      N_LOA_NonlinearEquationLoader.lo
  CXX      N_LOA_CktLoader.lo
  CXX      N_LOA_HBLoader.lo
  CXX      N_LOA_Loader.lo
  CXXLD    libLoaderServices.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/LoaderServicesPKG'
Making all in NonlinearSolverPKG
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/NonlinearSolverPKG'
  CXX      N_NLS_Manager.lo
  CXX      N_NLS_DampedNewton.lo
  CXX      N_NLS_TwoLevelNewton.lo
  CXX      N_NLS_NonLinearSolver.lo
  CXX      N_NLS_Sensitivity.lo
  CXX      N_NLS_SensitivityResiduals.lo
  CXX      N_NLS_ConstraintBT.lo
  CXX      N_NLS_ConductanceExtractor.lo
  CXX      N_NLS_MatrixFreeEpetraOperator.lo
  CXX      N_NLS_NLParams.lo
  CXX      N_NLS_ParamMgr.lo
  CXX      N_NLS_NOX.lo
  CXX      N_NLS_NOX_Vector.lo
  CXX      N_NLS_NOX_Group.lo
  CXX      N_NLS_NOX_Interface.lo
  CXX      N_NLS_NOX_SharedSystem.lo
  CXX      N_NLS_NOX_ParameterSet.lo
  CXX      N_NLS_NOX_XyceTests.lo
  CXX      N_NLS_NOX_PseudoTransientTest.lo
  CXX      N_NLS_NOX_PseudoTransientSolver.lo
  CXX      N_NLS_LOCA_Group.lo
  CXX      N_NLS_NOX_AugmentLinSys_PseudoTransient.lo
  CXX      N_NLS_NOX_AugmentLinSys_GStepping.lo
  CXX      N_NLS_NOX_AugmentLinSys_OPStart.lo
  CXX      N_NLS_NOX_AugmentLinSys_IC.lo
  CXX      N_NLS_NOX_AugmentLinSys_IC_Gmin.lo
  CXX      N_NLS_ReturnCodes.lo
  CXXLD    libNonlinearSolver.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/NonlinearSolverPKG'
Making all in ParallelDistPKG
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/ParallelDistPKG'
  CXX      N_PDS_GlobalAccessor.lo
  CXX      N_PDS_Comm.lo
  CXX      N_PDS_MPI.lo
  CXX      N_PDS_MPIComm.lo
  CXX      N_PDS_Manager.lo
  CXX      N_PDS_ParMap.lo
  CXX      N_PDS_ParallelMachine.lo
  CXX      N_PDS_SerialComm.lo
  CXX      N_PDS_Node.lo
  CXXLD    libParallelDist.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/ParallelDistPKG'
Making all in TimeIntegrationPKG
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/TimeIntegrationPKG'
  CXX      N_TIA_TIAParams.lo
  CXX      N_TIA_DataStore.lo
  CXX      N_TIA_StepErrorControl.lo
  CXX      N_TIA_TimeIntegrationMethods.lo
  CXX      N_TIA_RegisterTimeIntegrationMethods.lo
  CXX      N_TIA_WorkingIntegrationMethod.lo
  CXX      N_TIA_Gear12.lo
  CXX      N_TIA_OneStep.lo
  CXX      N_TIA_NoTimeIntegration.lo
  CXX      N_TIA_TwoLevelError.lo
  CXXLD    libTimeIntegration.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/TimeIntegrationPKG'
Making all in TopoManagerPKG
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/TopoManagerPKG'
  CXX      N_TOP_CktGraph.lo
  CXX      N_TOP_CktGraphBasic.lo
  CXX      N_TOP_CktNode.lo
  CXX      N_TOP_CktNode_V.lo
  CXX      N_TOP_CktNode_Dev.lo
  CXX      N_TOP_Directory.lo
  CXX      N_TOP_Node.lo
  CXX      N_TOP_NodeDevBlock.lo
  CXX      N_TOP_ParNode.lo
  CXX      N_TOP_ParLSUtil.lo
  CXX      N_TOP_SerialLSUtil.lo
  CXX      N_TOP_LSUtilFactory.lo
  CXX      N_TOP_Topology.lo
  CXX      N_TOP_Indexor.lo
  CXXLD    libTopoManager.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/TopoManagerPKG'
Making all in UtilityPKG
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/UtilityPKG'
echo "/* TIMESTAMP APPLIED */" > timestamp.h
make  all-am
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/UtilityPKG'
  CXX      N_UTL_FFTW_Interface.lo
  CXX      N_UTL_BreakPoint.lo
  CXX      N_UTL_Demangle.lo
  CXX      N_UTL_DeviceNameConverters.lo
  CXX      N_UTL_NoCase.lo
  CXX      N_UTL_Expression.lo
  CXX      N_UTL_Diagnostic.lo
  CXX      N_UTL_ExpressionData.lo
  CXX      N_UTL_ExpressionInternals.lo
  CXX      N_UTL_APFT.lo
  CXX      N_UTL_FFTInterface.lo
  CXX      N_UTL_LogStream.lo
  CXX      N_UTL_ReportHandler.lo
  CXX      N_UTL_Marshal.lo
  CXX      N_UTL_JSON.lo
  CXX      N_UTL_SendCURL.lo
  CXX      N_UTL_ByThreadStreambuf.lo
  CXX      N_UTL_Misc.lo
  CXX      N_UTL_ExtendedString.lo
  CXX      N_UTL_NetlistLocation.lo
  CXX      N_UTL_NodeSymbols.lo
  CXX      N_UTL_OptionBlock.lo
  CXX      N_UTL_Op.lo
  CXX      N_UTL_OpBuilder.lo
  CXX      N_UTL_OutputAPIHelpers.lo
  CXX      N_UTL_Param.lo
  CXX      N_UTL_RandomNumbers.lo
  CXX      N_UTL_Registry.lo
  CXX      N_UTL_Timer.lo
  CXX      N_UTL_CPUTime.lo
  CXX      N_UTL_MallocUsed.lo
  CXX      N_UTL_FormatMemorySize.lo
  CXX      N_UTL_FormatTime.lo
  CXX      N_UTL_StatMetricTraits.lo
  CXX      N_UTL_Stats.lo
  CXX      N_UTL_Platform.lo
  CXX      N_UTL_PrintTable.lo
  CXX      N_UTL_PrintStats.lo
  CXX      N_UTL_WallTime.lo
  CXX      N_UTL_Version.lo
  CXX      N_UTL_Algorithm.lo
  CXX      N_UTL_NameLevelKey.lo
  CXX      N_UTL_CheckIfValidFile.lo
  CXX      N_UTL_MathSpecialFunctions.lo
  CXXLD    libUtility.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/UtilityPKG'
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/UtilityPKG'
Making all in MultiTimePDEPKG
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/MultiTimePDEPKG'
  CXX      N_MPDE_Manager.lo
  CXX      N_MPDE_Builder.lo
  CXX      N_MPDE_Loader.lo
  CXX      N_MPDE_SawtoothLoader.lo
  CXX      N_MPDE_Discretization.lo
  CXX      N_MPDE_WarpedPhaseCondition.lo
  CXXLD    libMPDE.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/MultiTimePDEPKG'
Making all in test
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test'
Making all in MPITest
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/MPITest'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/MPITest'
Making all in FFTInterface
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/FFTInterface'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/FFTInterface'
Making all in LinearAlgebraTest
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/LinearAlgebraTest'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/LinearAlgebraTest'
Making all in XyceAsLibrary
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/XyceAsLibrary'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/XyceAsLibrary'
Making all in DeviceInterface
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/DeviceInterface'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/DeviceInterface'
Making all in RandomTest
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/RandomTest'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/RandomTest'
Making all in GenExtTestHarnesses
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/GenExtTestHarnesses'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/GenExtTestHarnesses'
Making all in XygraTestHarnesses
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/XygraTestHarnesses'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/XygraTestHarnesses'
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test'
make[4]: Nothing to be done for 'all-am'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test'
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test'
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src'
  CXX      Xyce.o
  CCLD     libxyce.la
ar: `u' modifier ignored since `D' is the default (see `U')
  CXXLD    Xyce
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src'
make[2]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src'
make[1]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src'
make[1]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10'
make[1]: Nothing to be done for 'all-am'.
make[1]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10'
==> Entering fakeroot environment...
==> Starting package()...
Making install in src
make[1]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src'
Making install in AnalysisPKG
make[2]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/AnalysisPKG'
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/AnalysisPKG'
make[3]: Nothing to be done for 'install-exec-am'.
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/AnalysisPKG'
make[2]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/AnalysisPKG'
Making install in CircuitPKG
make[2]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/CircuitPKG'
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/CircuitPKG'
make[3]: Nothing to be done for 'install-exec-am'.
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/CircuitPKG'
make[2]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/CircuitPKG'
Making install in DakotaLinkPKG
make[2]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DakotaLinkPKG'
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DakotaLinkPKG'
make[3]: Nothing to be done for 'install-exec-am'.
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DakotaLinkPKG'
make[2]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DakotaLinkPKG'
Making install in DeviceModelPKG
make[2]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG'
Making install in Core
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/Core'
make  install-am
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/Core'
make[5]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/Core'
make[5]: Nothing to be done for 'install-exec-am'.
make[5]: Nothing to be done for 'install-data-am'.
make[5]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/Core'
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/Core'
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/Core'
Making install in OpenModels
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/OpenModels'
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/OpenModels'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/OpenModels'
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/OpenModels'
Making install in TCADModels
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/TCADModels'
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/TCADModels'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/TCADModels'
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/TCADModels'
Making install in EXTSC
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/EXTSC'
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/EXTSC'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/EXTSC'
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/EXTSC'
Making install in NeuronModels
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/NeuronModels'
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/NeuronModels'
make[4]: Nothing to be done for 'install-data-am'.
 /usr/bin/mkdir -p '/home/phung/Documents/Grive/Personal/Analog/Xyce/pkg/Xyce/usr/local/lib'
 /bin/sh ../../../libtool   --mode=install /usr/bin/install -c   libNeuronModels.la '/home/phung/Documents/Grive/Personal/Analog/Xyce/pkg/Xyce/usr/local/lib'
libtool: install: /usr/bin/install -c .libs/libNeuronModels.lai /home/phung/Documents/Grive/Personal/Analog/Xyce/pkg/Xyce/usr/local/lib/libNeuronModels.la
libtool: install: /usr/bin/install -c .libs/libNeuronModels.a /home/phung/Documents/Grive/Personal/Analog/Xyce/pkg/Xyce/usr/local/lib/libNeuronModels.a
libtool: install: chmod 644 /home/phung/Documents/Grive/Personal/Analog/Xyce/pkg/Xyce/usr/local/lib/libNeuronModels.a
libtool: install: ranlib /home/phung/Documents/Grive/Personal/Analog/Xyce/pkg/Xyce/usr/local/lib/libNeuronModels.a
libtool: warning: remember to run 'libtool --finish /usr/local/lib'
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/NeuronModels'
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/NeuronModels'
Making install in ADMS
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/ADMS'
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/ADMS'
make[4]: Nothing to be done for 'install-data-am'.
 /usr/bin/mkdir -p '/home/phung/Documents/Grive/Personal/Analog/Xyce/pkg/Xyce/usr/local/lib'
 /bin/sh ../../../libtool   --mode=install /usr/bin/install -c   libADMS.la '/home/phung/Documents/Grive/Personal/Analog/Xyce/pkg/Xyce/usr/local/lib'
libtool: install: /usr/bin/install -c .libs/libADMS.lai /home/phung/Documents/Grive/Personal/Analog/Xyce/pkg/Xyce/usr/local/lib/libADMS.la
libtool: install: /usr/bin/install -c .libs/libADMS.a /home/phung/Documents/Grive/Personal/Analog/Xyce/pkg/Xyce/usr/local/lib/libADMS.a
libtool: install: chmod 644 /home/phung/Documents/Grive/Personal/Analog/Xyce/pkg/Xyce/usr/local/lib/libADMS.a
libtool: install: ranlib /home/phung/Documents/Grive/Personal/Analog/Xyce/pkg/Xyce/usr/local/lib/libADMS.a
libtool: warning: remember to run 'libtool --finish /usr/local/lib'
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/ADMS'
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/ADMS'
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG'
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG'
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG'
make[2]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG'
Making install in ErrorHandlingPKG
make[2]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/ErrorHandlingPKG'
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/ErrorHandlingPKG'
make[3]: Nothing to be done for 'install-exec-am'.
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/ErrorHandlingPKG'
make[2]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/ErrorHandlingPKG'
Making install in IOInterfacePKG
make[2]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/IOInterfacePKG'
Making install in Output
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/IOInterfacePKG/Output'
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/IOInterfacePKG/Output'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/IOInterfacePKG/Output'
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/IOInterfacePKG/Output'
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/IOInterfacePKG'
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/IOInterfacePKG'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/IOInterfacePKG'
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/IOInterfacePKG'
make[2]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/IOInterfacePKG'
Making install in LinearAlgebraServicesPKG
make[2]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/LinearAlgebraServicesPKG'
Making install in ksparse
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/LinearAlgebraServicesPKG/ksparse'
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/LinearAlgebraServicesPKG/ksparse'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/LinearAlgebraServicesPKG/ksparse'
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/LinearAlgebraServicesPKG/ksparse'
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/LinearAlgebraServicesPKG'
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/LinearAlgebraServicesPKG'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/LinearAlgebraServicesPKG'
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/LinearAlgebraServicesPKG'
make[2]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/LinearAlgebraServicesPKG'
Making install in LoaderServicesPKG
make[2]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/LoaderServicesPKG'
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/LoaderServicesPKG'
make[3]: Nothing to be done for 'install-exec-am'.
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/LoaderServicesPKG'
make[2]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/LoaderServicesPKG'
Making install in NonlinearSolverPKG
make[2]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/NonlinearSolverPKG'
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/NonlinearSolverPKG'
make[3]: Nothing to be done for 'install-exec-am'.
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/NonlinearSolverPKG'
make[2]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/NonlinearSolverPKG'
Making install in ParallelDistPKG
make[2]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/ParallelDistPKG'
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/ParallelDistPKG'
make[3]: Nothing to be done for 'install-exec-am'.
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/ParallelDistPKG'
make[2]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/ParallelDistPKG'
Making install in TimeIntegrationPKG
make[2]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/TimeIntegrationPKG'
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/TimeIntegrationPKG'
make[3]: Nothing to be done for 'install-exec-am'.
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/TimeIntegrationPKG'
make[2]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/TimeIntegrationPKG'
Making install in TopoManagerPKG
make[2]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/TopoManagerPKG'
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/TopoManagerPKG'
make[3]: Nothing to be done for 'install-exec-am'.
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/TopoManagerPKG'
make[2]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/TopoManagerPKG'
Making install in UtilityPKG
make[2]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/UtilityPKG'
echo "/* TIMESTAMP APPLIED */" > timestamp.h
make  install-am
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/UtilityPKG'
echo "/* TIMESTAMP APPLIED */" > timestamp.h
  CXX      N_UTL_Version.lo
  CXXLD    libUtility.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/UtilityPKG'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/UtilityPKG'
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/UtilityPKG'
make[2]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/UtilityPKG'
Making install in MultiTimePDEPKG
make[2]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/MultiTimePDEPKG'
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/MultiTimePDEPKG'
make[3]: Nothing to be done for 'install-exec-am'.
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/MultiTimePDEPKG'
make[2]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/MultiTimePDEPKG'
Making install in test
make[2]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test'
Making install in MPITest
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/MPITest'
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/MPITest'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/MPITest'
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/MPITest'
Making install in FFTInterface
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/FFTInterface'
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/FFTInterface'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/FFTInterface'
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/FFTInterface'
Making install in LinearAlgebraTest
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/LinearAlgebraTest'
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/LinearAlgebraTest'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/LinearAlgebraTest'
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/LinearAlgebraTest'
Making install in XyceAsLibrary
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/XyceAsLibrary'
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/XyceAsLibrary'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/XyceAsLibrary'
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/XyceAsLibrary'
Making install in DeviceInterface
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/DeviceInterface'
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/DeviceInterface'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/DeviceInterface'
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/DeviceInterface'
Making install in RandomTest
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/RandomTest'
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/RandomTest'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/RandomTest'
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/RandomTest'
Making install in GenExtTestHarnesses
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/GenExtTestHarnesses'
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/GenExtTestHarnesses'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/GenExtTestHarnesses'
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/GenExtTestHarnesses'
Making install in XygraTestHarnesses
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/XygraTestHarnesses'
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/XygraTestHarnesses'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/XygraTestHarnesses'
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/XygraTestHarnesses'
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test'
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test'
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test'
make[2]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test'
make[2]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src'
  CCLD     libxyce.la
ar: `u' modifier ignored since `D' is the default (see `U')
  CXXLD    Xyce
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src'
 /usr/bin/mkdir -p '/home/phung/Documents/Grive/Personal/Analog/Xyce/pkg/Xyce/usr/local/lib'
 /bin/sh ../libtool   --mode=install /usr/bin/install -c   libxyce.la '/home/phung/Documents/Grive/Personal/Analog/Xyce/pkg/Xyce/usr/local/lib'
 /usr/bin/mkdir -p '/home/phung/Documents/Grive/Personal/Analog/Xyce/pkg/Xyce/usr/local/include'
 /usr/bin/mkdir -p '/home/phung/Documents/Grive/Personal/Analog/Xyce/pkg/Xyce/usr/local/share/xml'
 /usr/bin/install -c -m 644 ../utils/ADMS/xyceVersion.xml ../utils/ADMS/xyceBasicTemplates.xml ../utils/ADMS/xyceImplementationFile.xml ../utils/ADMS/xyceHeaderFile.xml ../utils/ADMS/xyceMakefile.am.xml ../utils/ADMS/xyceBootstrapFile.xml ../utils/ADMS/html_params.xml '/home/phung/Documents/Grive/Personal/Analog/Xyce/pkg/Xyce/usr/local/share/xml'
 /usr/bin/install -c -m 644 ./AnalysisPKG/N_ANP_fwd.h ./AnalysisPKG/N_ANP_NoiseData.h ./CircuitPKG/N_CIR_Xyce.h ./CircuitPKG/N_CIR_Xygra.h ./CircuitPKG/N_CIR_GenCouplingSimulator.h ./DeviceModelPKG/Core/N_DEV_Configuration.h ./DeviceModelPKG/Core/N_DEV_Const.h ./DeviceModelPKG/Core/N_DEV_Device.h ./DeviceModelPKG/Core/N_DEV_DeviceBlock.h ./DeviceModelPKG/Core/N_DEV_DeviceEntity.h ./DeviceModelPKG/Core/N_DEV_DeviceInstance.h ./DeviceModelPKG/Core/N_DEV_DeviceMaster.h ./DeviceModelPKG/Core/N_DEV_DeviceModel.h ./DeviceModelPKG/Core/N_DEV_DeviceOptions.h ./DeviceModelPKG/Core/N_DEV_DeviceSupport.h ./DeviceModelPKG/Core/N_DEV_InstanceName.h ./DeviceModelPKG/Core/N_DEV_ExternalSimulationData.h ./DeviceModelPKG/Core/N_DEV_ExternData.h ./DeviceModelPKG/Core/N_DEV_fwd.h ./DeviceModelPKG/Core/N_DEV_Message.h ./DeviceModelPKG/Core/N_DEV_Param.h ./DeviceModelPKG/Core/N_DEV_Pars.h ./DeviceModelPKG/Core/N_DEV_SolverState.h ./DeviceModelPKG/Core/N_DEV_Units.h ./DeviceModelPKG/Core/N_DEV_VectorComputeInterface.h ./DeviceModelPKG/OpenModels/N_DEV_ADC.h ./DeviceModelPKG/OpenModels/N_DEV_DAC.h ./DeviceModelPKG/OpenModels/N_DEV_Resistor.h ./DeviceModelPKG/OpenModels/N_DEV_Capacitor.h ./DeviceModelPKG/OpenModels/N_DEV_BJT.h ./DeviceModelPKG/OpenModels/N_DEV_Diode.h ./DeviceModelPKG/OpenModels/N_DEV_MOSFET1.h ./ErrorHandlingPKG/N_ERH_fwd.h ./ErrorHandlingPKG/N_ERH_Message.h ./IOInterfacePKG/N_IO_CmdParse.h ./IOInterfacePKG/N_IO_ExtOutInterface.h ./IOInterfacePKG/N_IO_HangingResistor.h ./IOInterfacePKG/N_IO_OutputTypes.h ./IOInterfacePKG/N_IO_fwd.h ./LinearAlgebraServicesPKG/N_LAS_fwd.h '/home/phung/Documents/Grive/Personal/Analog/Xyce/pkg/Xyce/usr/local/include'
libtool: install: /usr/bin/install -c .libs/libxyce.lai /home/phung/Documents/Grive/Personal/Analog/Xyce/pkg/Xyce/usr/local/lib/libxyce.la
libtool: install: /usr/bin/install -c .libs/libxyce.a /home/phung/Documents/Grive/Personal/Analog/Xyce/pkg/Xyce/usr/local/lib/libxyce.a
libtool: install: chmod 644 /home/phung/Documents/Grive/Personal/Analog/Xyce/pkg/Xyce/usr/local/lib/libxyce.a
libtool: install: ranlib /home/phung/Documents/Grive/Personal/Analog/Xyce/pkg/Xyce/usr/local/lib/libxyce.a
 /usr/bin/install -c -m 644 ./LinearAlgebraServicesPKG/N_LAS_Vector.h ./LinearAlgebraServicesPKG/N_LAS_Matrix.h ./LinearAlgebraServicesPKG/N_LAS_MultiVector.h ./LoaderServicesPKG/N_LOA_fwd.h ./LoaderServicesPKG/N_LOA_Loader.h ./NonlinearSolverPKG/N_NLS_fwd.h ./NonlinearSolverPKG/N_NLS_TwoLevelEnum.h ./ParallelDistPKG/N_PDS_Manager.h ./ParallelDistPKG/N_PDS_fwd.h ./ParallelDistPKG/N_PDS_MPI.h ./ParallelDistPKG/N_PDS_ParallelMachine.h ./ParallelDistPKG/N_PDS_Serial.h ./TimeIntegrationPKG/N_TIA_TwoLevelError.h ./TimeIntegrationPKG/N_TIA_fwd.h ./TopoManagerPKG/N_TOP_fwd.h ./UtilityPKG/N_UTL_BreakPoint.h ./UtilityPKG/N_UTL_Diagnostic.h ./UtilityPKG/N_UTL_Expression.h ./UtilityPKG/N_UTL_ExpressionSymbolTable.h ./UtilityPKG/N_UTL_ExpressionData.h ./UtilityPKG/N_UTL_fwd.h ./UtilityPKG/N_UTL_FeatureTest.h ./UtilityPKG/N_UTL_FormatTime.h ./UtilityPKG/N_UTL_Interface_Enum_Types.h ./UtilityPKG/N_UTL_JSON.h ./UtilityPKG/N_UTL_MachDepParams.h ./UtilityPKG/N_UTL_Marshal.h ./UtilityPKG/N_UTL_IndexPair.h ./UtilityPKG/N_UTL_Misc.h ./UtilityPKG/N_UTL_Math.h ./UtilityPKG/N_UTL_NameLevelKey.h ./UtilityPKG/N_UTL_NetlistLocation.h ./UtilityPKG/N_UTL_NoCase.h ./UtilityPKG/N_UTL_NodeSymbols.h ./UtilityPKG/N_UTL_Op.h ./UtilityPKG/N_UTL_Pack.h ./UtilityPKG/N_UTL_Param.h ./UtilityPKG/N_UTL_ReportHandler.h ./UtilityPKG/N_UTL_Stats.h ./UtilityPKG/N_UTL_StatMetricTraits.h '/home/phung/Documents/Grive/Personal/Analog/Xyce/pkg/Xyce/usr/local/include'
 /usr/bin/install -c -m 644 ./UtilityPKG/N_UTL_TypeIndex.h ./UtilityPKG/N_UTL_Xyce.h ../src/Xyce_config.h '/home/phung/Documents/Grive/Personal/Analog/Xyce/pkg/Xyce/usr/local/include'
libtool: warning: remember to run 'libtool --finish /usr/local/lib'
 /usr/bin/mkdir -p '/home/phung/Documents/Grive/Personal/Analog/Xyce/pkg/Xyce/usr/local/bin'
  /bin/sh ../libtool   --mode=install /usr/bin/install -c Xyce '/home/phung/Documents/Grive/Personal/Analog/Xyce/pkg/Xyce/usr/local/bin'
libtool: install: /usr/bin/install -c Xyce /home/phung/Documents/Grive/Personal/Analog/Xyce/pkg/Xyce/usr/local/bin/Xyce
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src'
make[2]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src'
make[1]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src'
make[1]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10'
make[2]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10'
make[2]: Nothing to be done for 'install-data-am'.
make[2]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10'
make[1]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10'
==> Tidying install...
  -> Removing libtool files...
  -> Purging unwanted files...
  -> Removing static library files...
  -> Stripping unneeded symbols from binaries and libraries...
  -> Compressing man and info pages...
==> Checking for packaging issues...
==> Creating package "Xyce"...
  -> Generating .PKGINFO file...
  -> Generating .BUILDINFO file...
  -> Generating .MTREE file...
  -> Compressing package...
==> Leaving fakeroot environment.
==> Finished making: Xyce 6.10-1 (Sun 24 Feb 2019 12:35:16 PM +08)
[phung@archlinux Xyce]$ sudo pacman -U Xyce
Xyce-6.10-1-x86_64.pkg.tar.xz  Xyce-6.10.tar.gz               Xyce_Docs-6.10.tar.gz          Xyce_Regression-6.10.tar.gz    
[phung@archlinux Xyce]$ sudo pacman -U Xyce-6.10-1-x86_64.pkg.tar.xz 
[sudo] password for phung: 
loading packages...
resolving dependencies...
looking for conflicting packages...

Packages (1) Xyce-6.10-1

Total Installed Size:  164.80 MiB

:: Proceed with installation? [Y/n] 
(1/1) checking keys in keyring                                                                                                 [#############################################################################] 100%
(1/1) checking package integrity                                                                                               [#############################################################################] 100%
(1/1) loading package files                                                                                                    [#############################################################################] 100%
(1/1) checking for file conflicts                                                                                              [#############################################################################] 100%
(1/1) checking available disk space                                                                                            [#############################################################################] 100%
:: Processing package changes...
(1/1) installing Xyce                                                                                                          [#############################################################################] 100%
:: Running post-transaction hooks...
(1/1) Arming ConditionNeedsUpdate...
[phung@archlinux Xyce]$ 

Offline

#23 2019-02-24 09:37:47

jamespharvey20
Member
Registered: 2015-06-09
Posts: 129

Re: [REQUEST] Xyce circuit simulator

Note this line needs to have the trailing slash.  Just noticed that isn't in my last post.  The trailing slash makes the newline character be ignored, so the subsequent line (or, lines, if those have trailing slashes too) is treated as being on the same line.

./configure \
--prefix=/usr \
...

Offline

#24 2019-02-24 11:17:13

Lone_Wolf
Member
From: Netherlands, Europe
Registered: 2005-10-04
Posts: 11,868

Re: [REQUEST] Xyce circuit simulator

libtool: warning: remember to run 'libtool --finish /usr/local/lib'

This appears to have to do with gnu make and libtool not agreeing on how to deal with .la-files.
Arch linux removes those by default so it should only matter for builds that enable libtool in options array specifically.

See https://lists.gnu.org/archive/html/libt … 00009.html

Last edited by Lone_Wolf (2019-02-24 11:18:41)


Disliking systemd intensely, but not satisfied with alternatives so focusing on taming systemd.


(A works at time B)  && (time C > time B ) ≠  (A works at time C)

Offline

#25 2019-02-24 16:27:52

promach
Member
Registered: 2016-05-18
Posts: 96

Re: [REQUEST] Xyce circuit simulator

Why do I still have the warning with regards to /usr/local when I am instructing the PKGBUILD to install xyce to /usr instead of /usr/local

# Maintainer: Cheng Fei Phung <feiphung@hotmail.com>

pkgname=Xyce
pkgver=6.10
pkgrel=1
pkgdesc="The Xyce Parallel Electronic Simulator is a SPICE-compatible circuit simulator"
arch=('x86_64')
url="https://xyce.sandia.gov/about_xyce/index.html"
license=('GPL')
depends=('bison' 'trilinos-xyce')
makedepends=()
source=("https://xyce.sandia.gov/downloads/_assets/documents/${pkgname}-${pkgver}.tar.gz")
md5sums=('SKIP')

build() {
  cd "${pkgname}-${pkgver}"

  ./configure \
  --prefix=/usr \
  CXXFLAGS="-O3" \
  CPPFLAGS="-I/usr/include/suitesparse" \
  --enable-mpi \
  CXX=mpicxx \
  CC=mpicc \
  F77=mpif77

  make -j8
}

package() {
  cd "${pkgname}-${pkgver}"
  make PREFIX=/usr DESTDIR="$pkgdir" install
}

libtool: warning: remember to run 'libtool --finish /usr/local/lib'

[phung@archlinux Xyce]$ makepkg -s
==> Making package: Xyce 6.10-1 (Mon 25 Feb 2019 12:21:52 AM +08)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
  -> Found Xyce-6.10.tar.gz
==> Validating source files with md5sums...
    Xyce-6.10.tar.gz ... Skipped
==> Extracting sources...
  -> Extracting Xyce-6.10.tar.gz with bsdtar
==> Removing existing $pkgdir/ directory...
==> Starting build()...
checking whether make supports nested variables... yes
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking target system type... x86_64-unknown-linux-gnu
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking whether to build the xyce binary... yes
checking whether to build xyce shareable... no
checking whether the C++ compiler works... yes
checking for C++ compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C++ compiler... yes
checking whether mpicxx accepts -g... yes
checking whether make supports the include directive... yes (GNU style)
checking dependency style of mpicxx... gcc3
checking whether we are using the GNU C compiler... yes
checking whether mpicc accepts -g... yes
checking for mpicc option to accept ISO C89... none needed
checking whether mpicc understands -c and -o together... yes
checking dependency style of mpicc... gcc3
checking whether we are using the GNU Fortran 77 compiler... yes
checking whether mpif77 accepts -g... yes
checking for flex... flex
checking lex output file root... lex.yy
checking lex library... -lfl
checking whether yytext is a pointer... yes
checking for bison... bison
checking for bison version 3.2... yes
checking whether make sets $(MAKE)... (cached) yes
checking how to print strings... printf
checking for a sed that does not truncate output... /usr/bin/sed
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for fgrep... /usr/bin/grep -F
checking for ld used by mpicc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1572864
checking how to convert x86_64-unknown-linux-gnu file names to x86_64-unknown-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-unknown-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for ar... ar
checking for archiver @FILE support... @
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from mpicc object... ok
checking for sysroot... no
checking for a working dd... /usr/bin/dd
checking how to truncate binary pipes... /usr/bin/dd bs=4096 count=1
checking for mt... no
checking if : is a manifest tool... no
checking how to run the C preprocessor... mpicc -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for dlfcn.h... yes
checking for objdir... .libs
checking if mpicc supports -fno-rtti -fno-exceptions... no
checking for mpicc option to produce PIC... -fPIC -DPIC
checking if mpicc PIC flag -fPIC -DPIC works... yes
checking if mpicc static flag -static works... no
checking if mpicc supports -c -o file.o... yes
checking if mpicc supports -c -o file.o... (cached) yes
checking whether the mpicc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... no
checking whether to build static libraries... yes
checking how to run the C++ preprocessor... mpicxx -E
checking for ld used by mpicxx... /usr/bin/ld -m elf_x86_64
checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
checking whether the mpicxx linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking for mpicxx option to produce PIC... -fPIC -DPIC
checking if mpicxx PIC flag -fPIC -DPIC works... yes
checking if mpicxx static flag -static works... no
checking if mpicxx supports -c -o file.o... yes
checking if mpicxx supports -c -o file.o... (cached) yes
checking whether the mpicxx linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... (cached) GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... no
checking whether to build static libraries... yes
checking for mpif77 option to produce PIC... -fPIC
checking if mpif77 PIC flag -fPIC works... yes
checking if mpif77 static flag -static works... no
checking if mpif77 supports -c -o file.o... yes
checking if mpif77 supports -c -o file.o... (cached) yes
checking whether the mpif77 linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... (cached) GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking for grep that handles long lines and -e... (cached) /usr/bin/grep
checking whether your C++ compiler is the Intel compiler version less than 12... no
checking how to get verbose linking output from mpif77... -v
checking for Fortran 77 libraries of mpif77...  -L/lib -L/usr/lib/openmpi -L/usr/lib/gcc/x86_64-pc-linux-gnu/8.2.1 -L/usr/lib/gcc/x86_64-pc-linux-gnu/8.2.1/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/8.2.1/../../.. -lmpi_usempif08 -lmpi_usempi_ignore_tkr -lmpi_mpifh -lmpi -lgfortran -lm -lquadmath -lpthread
checking for library containing sqrt... -lm
checking for library containing dcopy... -lblas
checking for library containing dgetrs... -llapack
checking for ANSI C header files... (cached) yes
checking whether the compiler implements namespaces... yes
checking whether the compiler supports Standard Template Library... yes
checking for unistd.h... (cached) yes
checking values.h usability... yes
checking values.h presence... yes
checking for values.h... yes
checking limits.h usability... yes
checking limits.h presence... yes
checking for limits.h... yes
checking float.h usability... yes
checking float.h presence... yes
checking for float.h... yes
checking math.h usability... yes
checking math.h presence... yes
checking for math.h... yes
checking cmath usability... yes
checking cmath presence... yes
checking for cmath... yes
checking climits usability... yes
checking climits presence... yes
checking for climits... yes
checking ostream usability... yes
checking ostream presence... yes
checking for ostream... yes
checking iostream usability... yes
checking iostream presence... yes
checking for iostream... yes
checking ostream.h usability... no
checking ostream.h presence... no
checking for ostream.h... no
checking fstream usability... yes
checking fstream presence... yes
checking for fstream... yes
checking cstdio usability... yes
checking cstdio presence... yes
checking for cstdio... yes
checking algorithm usability... yes
checking algorithm presence... yes
checking for algorithm... yes
checking cctype usability... yes
checking cctype presence... yes
checking for cctype... yes
checking cstdlib usability... yes
checking cstdlib presence... yes
checking for cstdlib... yes
checking cstring usability... yes
checking cstring presence... yes
checking for cstring... yes
checking for strings.h... (cached) yes
checking for string.h... (cached) yes
checking unordered_map usability... yes
checking unordered_map presence... yes
checking for unordered_map... yes
checking unordered_set usability... yes
checking unordered_set presence... yes
checking for unordered_set... yes
checking functional usability... yes
checking functional presence... yes
checking for functional... yes
checking tr1/unordered_map usability... yes
checking tr1/unordered_map presence... yes
checking for tr1/unordered_map... yes
checking tr1/unordered_set usability... yes
checking tr1/unordered_set presence... yes
checking for tr1/unordered_set... yes
checking tr1/functional usability... yes
checking tr1/functional presence... yes
checking for tr1/functional... yes
checking sys/resource.h usability... yes
checking sys/resource.h presence... yes
checking for sys/resource.h... yes
checking for stdlib.h... (cached) yes
checking for dlfcn.h... (cached) yes
checking for library containing dlopen... -ldl
checking for unistd.h... (cached) yes
checking malloc.h usability... yes
checking malloc.h presence... yes
checking for malloc.h... yes
checking pwd.h usability... yes
checking pwd.h presence... yes
checking for pwd.h... yes
checking sys/utsname.h usability... yes
checking sys/utsname.h presence... yes
checking for sys/utsname.h... yes
checking for mallinfo... yes
checking for getpwuid... yes
checking for gethostname... yes
checking for getdomainname... yes
checking for uname... yes
checking for sysconf... yes
checking for /proc/self/stat... yes
checking mathimf.h usability... no
checking mathimf.h presence... no
checking for mathimf.h... no
checking whether the compiler supports isnan and isinf... yes
checking for library containing MPI_Bcast... none required
checking for amd_valid in -lamd... yes
checking for main in -lteuchoscore... yes
configure: WARNING: Unable to find export file: Makefile.export.Teuchos.  Using predefined library dependencies.
checking for main in -lteuchoscore... (cached) yes
checking for main in -lteuchosremainder... yes
checking for main in -lteuchosnumerics... yes
checking for main in -lteuchoscomm... yes
checking for main in -lteuchosparameterlist... yes
checking for trilinos_klu_defaults in -ltrilinosss... yes
configure: WARNING: Unable to find export file: Makefile.export.Triutils.  Using predefined library dependencies.
checking for main in -ltriutils... yes
configure: WARNING: Unable to find export file: Makefile.export.Epetra.  Using predefined library dependencies.
checking for main in -lepetra... yes
configure: WARNING: Unable to find export file: Makefile.export.EpetraExt.  Using predefined library dependencies.
checking for main in -lepetraext... yes
checking EpetraExt_AMD_CrsGraph.h usability... yes
checking EpetraExt_AMD_CrsGraph.h presence... yes
checking for EpetraExt_AMD_CrsGraph.h... yes
checking whether HAVE_TEUCHOS_COMPLEX is declared... yes
checking whether HAVE_LIBPARMETIS is declared... no
checking for Zoltan_LB_Balance in -lzoltan... yes
configure: WARNING: Unable to find export file: Makefile.export.Isorropia.  Using predefined library dependencies.
checking for main in -lisorropia... yes
checking Amesos_Umfpack.h usability... no
checking Amesos_Umfpack.h presence... no
checking for Amesos_Umfpack.h... no
configure: WARNING: Unable to find export file: Makefile.export.Amesos.  Using predefined library dependencies.
checking for main in -lamesos... yes
configure: WARNING: Unable to find export file: Makefile.export.TrilinosCouplings.  Using predefined library dependencies.
checking for main in -ltrilinoscouplings... yes
configure: WARNING: Unable to find export file: Makefile.export.Ifpack.  Using predefined library dependencies.
checking for main in -lifpack... yes
configure: WARNING: Unable to find export file: Makefile.export.AztecOO.  Using predefined library dependencies.
checking for main in -laztecoo... yes
configure: WARNING: Unable to find export file: Makefile.export.Belos.  Using predefined library dependencies.
checking for main in -lbelos... yes
checking for main in -lbelosepetra... yes
configure: WARNING: Unable to find export file: Makefile.export.NOX.  Using predefined library dependencies.
checking for main in -lnox... yes
checking for main in -lloca... yes
checking whether the NOX abstract vector length is a NOX::size_type... yes
checking whether the NOX abstract solver has getSolverStatistics()... no
checking Epetra_MultiVector.h usability... yes
checking Epetra_MultiVector.h presence... yes
checking for Epetra_MultiVector.h... yes
checking Ifpack_CrsRiluk.h usability... yes
checking Ifpack_CrsRiluk.h presence... yes
checking for Ifpack_CrsRiluk.h... yes
checking Amesos_Klu.h usability... yes
checking Amesos_Klu.h presence... yes
checking for Amesos_Klu.h... yes
checking NOX_Abstract_Vector.H usability... yes
checking NOX_Abstract_Vector.H presence... yes
checking for NOX_Abstract_Vector.H... yes
checking LOCA_Parameter_Vector.H usability... yes
checking LOCA_Parameter_Vector.H presence... yes
checking for LOCA_Parameter_Vector.H... yes
checking Sacado.hpp usability... yes
checking Sacado.hpp presence... yes
checking for Sacado.hpp... yes
checking whether math.h defines M_PI... yes
checking whether use of stl strings and pairs requires including pair.h... no
checking for strcasecmp... yes
checking for getopt... yes
checking for drand48... yes
checking for erf... yes
checking for erfc... yes
checking mkl_dfti.h usability... no
checking mkl_dfti.h presence... no
checking for mkl_dfti.h... no
checking fftw3.h usability... yes
checking fftw3.h presence... yes
checking for fftw3.h... yes
checking for library containing fftw_plan_dft_1d... -lfftw3
checking whether your gcc has a braindamaged STL algorithm random_shuffle... no
checking whether your STL algorithm includes iota... yes
checking for main in -lARAEnv... no
-lfftw3 -lloca -lnox -lbelosepetra -lbelos -laztecoo -lifpack -ltrilinoscouplings -lamesos -lisorropia -lzoltan -lepetraext -lepetra -ltriutils -ltrilinosss -lteuchosparameterlist -lteuchoscomm -lteuchosnumerics -lteuchosremainder -lteuchoscore -lamd -ldl -llapack -lblas -lm -L/lib -L/usr/lib/openmpi -L/usr/lib/gcc/x86_64-pc-linux-gnu/8.2.1 -L/usr/lib/gcc/x86_64-pc-linux-gnu/8.2.1/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/8.2.1/../../.. -lmpi_usempif08 -lmpi_usempi_ignore_tkr -lmpi_mpifh -lmpi -lgfortran -lm -lquadmath -lpthread
checking whether libraries (-lfftw3 -lloca -lnox -lbelosepetra -lbelos -laztecoo -lifpack -ltrilinoscouplings -lamesos -lisorropia -lzoltan -lepetraext -lepetra -ltriutils -ltrilinosss -lteuchosparameterlist -lteuchoscomm -lteuchosnumerics -lteuchosremainder -lteuchoscore -lamd -ldl -llapack -lblas -lm   -L/lib -L/usr/lib/openmpi -L/usr/lib/gcc/x86_64-pc-linux-gnu/8.2.1 -L/usr/lib/gcc/x86_64-pc-linux-gnu/8.2.1/../../../../lib -L/lib/../lib -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-pc-linux-gnu/8.2.1/../../.. -lmpi_usempif08 -lmpi_usempi_ignore_tkr -lmpi_mpifh -lmpi -lgfortran -lm -lquadmath -lpthread ) will link... yes
checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating Makefile
config.status: creating src/Makefile
config.status: creating src/AnalysisPKG/Makefile
config.status: creating src/CircuitPKG/Makefile
config.status: creating src/IOInterfacePKG/Makefile
config.status: creating src/IOInterfacePKG/Output/Makefile
config.status: creating src/DakotaLinkPKG/Makefile
config.status: creating src/DeviceModelPKG/Makefile
config.status: creating src/DeviceModelPKG/Core/Makefile
config.status: creating src/DeviceModelPKG/OpenModels/Makefile
config.status: creating src/DeviceModelPKG/TCADModels/Makefile
config.status: creating src/DeviceModelPKG/NeuronModels/Makefile
config.status: creating src/DeviceModelPKG/ADMS/Makefile
config.status: creating src/DeviceModelPKG/EXTSC/Makefile
config.status: creating src/ErrorHandlingPKG/Makefile
config.status: creating src/LinearAlgebraServicesPKG/Makefile
config.status: creating src/LinearAlgebraServicesPKG/ksparse/Makefile
config.status: creating src/LoaderServicesPKG/Makefile
config.status: creating src/NonlinearSolverPKG/Makefile
config.status: creating src/ParallelDistPKG/Makefile
config.status: creating src/TimeIntegrationPKG/Makefile
config.status: creating src/TopoManagerPKG/Makefile
config.status: creating src/UtilityPKG/Makefile
config.status: creating src/MultiTimePDEPKG/Makefile
config.status: creating utils/Makefile
config.status: creating utils/XyceCInterface/Makefile
config.status: creating src/test/Makefile
config.status: creating src/test/XyceAsLibrary/Makefile
config.status: creating src/test/DeviceInterface/Makefile
config.status: creating src/test/RandomTest/Makefile
config.status: creating src/test/FFTInterface/Makefile
config.status: creating src/test/LinearAlgebraTest/Makefile
config.status: creating src/test/XygraTestHarnesses/Makefile
config.status: creating src/test/GenExtTestHarnesses/Makefile
config.status: creating src/test/MPITest/Makefile
config.status: creating user_plugin/Makefile
config.status: creating distribution/CPackConfig.cmake
config.status: creating src/Xyce_config.h
config.status: src/Xyce_config.h is unchanged
config.status: executing depfiles commands
config.status: executing libtool commands
Making all in src
make[1]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src'
make  all-recursive
make[2]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src'
Making all in AnalysisPKG
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/AnalysisPKG'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/AnalysisPKG'
Making all in CircuitPKG
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/CircuitPKG'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/CircuitPKG'
Making all in DakotaLinkPKG
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DakotaLinkPKG'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DakotaLinkPKG'
Making all in DeviceModelPKG
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG'
Making all in Core
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/Core'
make  all-am
make[5]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/Core'
make[5]: Nothing to be done for 'all-am'.
make[5]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/Core'
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/Core'
Making all in OpenModels
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/OpenModels'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/OpenModels'
Making all in TCADModels
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/TCADModels'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/TCADModels'
Making all in EXTSC
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/EXTSC'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/EXTSC'
Making all in NeuronModels
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/NeuronModels'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/NeuronModels'
Making all in ADMS
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/ADMS'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/ADMS'
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG'
make[4]: Nothing to be done for 'all-am'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG'
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG'
Making all in ErrorHandlingPKG
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/ErrorHandlingPKG'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/ErrorHandlingPKG'
Making all in IOInterfacePKG
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/IOInterfacePKG'
Making all in Output
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/IOInterfacePKG/Output'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/IOInterfacePKG/Output'
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/IOInterfacePKG'
make[4]: Nothing to be done for 'all-am'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/IOInterfacePKG'
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/IOInterfacePKG'
Making all in LinearAlgebraServicesPKG
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/LinearAlgebraServicesPKG'
Making all in ksparse
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/LinearAlgebraServicesPKG/ksparse'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/LinearAlgebraServicesPKG/ksparse'
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/LinearAlgebraServicesPKG'
make[4]: Nothing to be done for 'all-am'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/LinearAlgebraServicesPKG'
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/LinearAlgebraServicesPKG'
Making all in LoaderServicesPKG
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/LoaderServicesPKG'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/LoaderServicesPKG'
Making all in NonlinearSolverPKG
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/NonlinearSolverPKG'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/NonlinearSolverPKG'
Making all in ParallelDistPKG
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/ParallelDistPKG'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/ParallelDistPKG'
Making all in TimeIntegrationPKG
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/TimeIntegrationPKG'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/TimeIntegrationPKG'
Making all in TopoManagerPKG
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/TopoManagerPKG'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/TopoManagerPKG'
Making all in UtilityPKG
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/UtilityPKG'
echo "/* TIMESTAMP APPLIED */" > timestamp.h
make  all-am
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/UtilityPKG'
echo "/* TIMESTAMP APPLIED */" > timestamp.h
  CXX      N_UTL_Version.lo
  CXXLD    libUtility.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/UtilityPKG'
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/UtilityPKG'
Making all in MultiTimePDEPKG
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/MultiTimePDEPKG'
make[3]: Nothing to be done for 'all'.
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/MultiTimePDEPKG'
Making all in test
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test'
Making all in MPITest
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/MPITest'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/MPITest'
Making all in FFTInterface
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/FFTInterface'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/FFTInterface'
Making all in LinearAlgebraTest
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/LinearAlgebraTest'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/LinearAlgebraTest'
Making all in XyceAsLibrary
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/XyceAsLibrary'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/XyceAsLibrary'
Making all in DeviceInterface
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/DeviceInterface'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/DeviceInterface'
Making all in RandomTest
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/RandomTest'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/RandomTest'
Making all in GenExtTestHarnesses
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/GenExtTestHarnesses'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/GenExtTestHarnesses'
Making all in XygraTestHarnesses
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/XygraTestHarnesses'
make[4]: Nothing to be done for 'all'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/XygraTestHarnesses'
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test'
make[4]: Nothing to be done for 'all-am'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test'
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test'
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src'
  CCLD     libxyce.la
ar: `u' modifier ignored since `D' is the default (see `U')
  CXXLD    Xyce
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src'
make[2]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src'
make[1]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src'
make[1]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10'
make[1]: Nothing to be done for 'all-am'.
make[1]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10'
==> Entering fakeroot environment...
==> Starting package()...
Making install in src
make[1]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src'
Making install in AnalysisPKG
make[2]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/AnalysisPKG'
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/AnalysisPKG'
make[3]: Nothing to be done for 'install-exec-am'.
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/AnalysisPKG'
make[2]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/AnalysisPKG'
Making install in CircuitPKG
make[2]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/CircuitPKG'
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/CircuitPKG'
make[3]: Nothing to be done for 'install-exec-am'.
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/CircuitPKG'
make[2]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/CircuitPKG'
Making install in DakotaLinkPKG
make[2]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DakotaLinkPKG'
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DakotaLinkPKG'
make[3]: Nothing to be done for 'install-exec-am'.
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DakotaLinkPKG'
make[2]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DakotaLinkPKG'
Making install in DeviceModelPKG
make[2]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG'
Making install in Core
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/Core'
make  install-am
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/Core'
make[5]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/Core'
make[5]: Nothing to be done for 'install-exec-am'.
make[5]: Nothing to be done for 'install-data-am'.
make[5]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/Core'
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/Core'
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/Core'
Making install in OpenModels
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/OpenModels'
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/OpenModels'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/OpenModels'
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/OpenModels'
Making install in TCADModels
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/TCADModels'
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/TCADModels'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/TCADModels'
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/TCADModels'
Making install in EXTSC
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/EXTSC'
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/EXTSC'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/EXTSC'
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/EXTSC'
Making install in NeuronModels
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/NeuronModels'
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/NeuronModels'
make[4]: Nothing to be done for 'install-data-am'.
 /usr/bin/mkdir -p '/home/phung/Documents/Grive/Personal/Analog/Xyce/pkg/Xyce/usr/lib'
 /bin/sh ../../../libtool   --mode=install /usr/bin/install -c   libNeuronModels.la '/home/phung/Documents/Grive/Personal/Analog/Xyce/pkg/Xyce/usr/lib'
libtool: install: /usr/bin/install -c .libs/libNeuronModels.lai /home/phung/Documents/Grive/Personal/Analog/Xyce/pkg/Xyce/usr/lib/libNeuronModels.la
libtool: install: /usr/bin/install -c .libs/libNeuronModels.a /home/phung/Documents/Grive/Personal/Analog/Xyce/pkg/Xyce/usr/lib/libNeuronModels.a
libtool: install: chmod 644 /home/phung/Documents/Grive/Personal/Analog/Xyce/pkg/Xyce/usr/lib/libNeuronModels.a
libtool: install: ranlib /home/phung/Documents/Grive/Personal/Analog/Xyce/pkg/Xyce/usr/lib/libNeuronModels.a
libtool: warning: remember to run 'libtool --finish /usr/local/lib'
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/NeuronModels'
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/NeuronModels'
Making install in ADMS
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/ADMS'
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/ADMS'
make[4]: Nothing to be done for 'install-data-am'.
 /usr/bin/mkdir -p '/home/phung/Documents/Grive/Personal/Analog/Xyce/pkg/Xyce/usr/lib'
 /bin/sh ../../../libtool   --mode=install /usr/bin/install -c   libADMS.la '/home/phung/Documents/Grive/Personal/Analog/Xyce/pkg/Xyce/usr/lib'
libtool: install: /usr/bin/install -c .libs/libADMS.lai /home/phung/Documents/Grive/Personal/Analog/Xyce/pkg/Xyce/usr/lib/libADMS.la
libtool: install: /usr/bin/install -c .libs/libADMS.a /home/phung/Documents/Grive/Personal/Analog/Xyce/pkg/Xyce/usr/lib/libADMS.a
libtool: install: chmod 644 /home/phung/Documents/Grive/Personal/Analog/Xyce/pkg/Xyce/usr/lib/libADMS.a
libtool: install: ranlib /home/phung/Documents/Grive/Personal/Analog/Xyce/pkg/Xyce/usr/lib/libADMS.a
libtool: warning: remember to run 'libtool --finish /usr/local/lib'
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/ADMS'
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG/ADMS'
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG'
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG'
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG'
make[2]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/DeviceModelPKG'
Making install in ErrorHandlingPKG
make[2]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/ErrorHandlingPKG'
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/ErrorHandlingPKG'
make[3]: Nothing to be done for 'install-exec-am'.
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/ErrorHandlingPKG'
make[2]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/ErrorHandlingPKG'
Making install in IOInterfacePKG
make[2]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/IOInterfacePKG'
Making install in Output
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/IOInterfacePKG/Output'
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/IOInterfacePKG/Output'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/IOInterfacePKG/Output'
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/IOInterfacePKG/Output'
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/IOInterfacePKG'
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/IOInterfacePKG'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/IOInterfacePKG'
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/IOInterfacePKG'
make[2]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/IOInterfacePKG'
Making install in LinearAlgebraServicesPKG
make[2]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/LinearAlgebraServicesPKG'
Making install in ksparse
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/LinearAlgebraServicesPKG/ksparse'
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/LinearAlgebraServicesPKG/ksparse'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/LinearAlgebraServicesPKG/ksparse'
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/LinearAlgebraServicesPKG/ksparse'
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/LinearAlgebraServicesPKG'
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/LinearAlgebraServicesPKG'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/LinearAlgebraServicesPKG'
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/LinearAlgebraServicesPKG'
make[2]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/LinearAlgebraServicesPKG'
Making install in LoaderServicesPKG
make[2]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/LoaderServicesPKG'
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/LoaderServicesPKG'
make[3]: Nothing to be done for 'install-exec-am'.
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/LoaderServicesPKG'
make[2]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/LoaderServicesPKG'
Making install in NonlinearSolverPKG
make[2]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/NonlinearSolverPKG'
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/NonlinearSolverPKG'
make[3]: Nothing to be done for 'install-exec-am'.
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/NonlinearSolverPKG'
make[2]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/NonlinearSolverPKG'
Making install in ParallelDistPKG
make[2]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/ParallelDistPKG'
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/ParallelDistPKG'
make[3]: Nothing to be done for 'install-exec-am'.
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/ParallelDistPKG'
make[2]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/ParallelDistPKG'
Making install in TimeIntegrationPKG
make[2]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/TimeIntegrationPKG'
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/TimeIntegrationPKG'
make[3]: Nothing to be done for 'install-exec-am'.
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/TimeIntegrationPKG'
make[2]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/TimeIntegrationPKG'
Making install in TopoManagerPKG
make[2]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/TopoManagerPKG'
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/TopoManagerPKG'
make[3]: Nothing to be done for 'install-exec-am'.
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/TopoManagerPKG'
make[2]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/TopoManagerPKG'
Making install in UtilityPKG
make[2]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/UtilityPKG'
echo "/* TIMESTAMP APPLIED */" > timestamp.h
make  install-am
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/UtilityPKG'
echo "/* TIMESTAMP APPLIED */" > timestamp.h
  CXX      N_UTL_Version.lo
  CXXLD    libUtility.la
ar: `u' modifier ignored since `D' is the default (see `U')
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/UtilityPKG'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/UtilityPKG'
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/UtilityPKG'
make[2]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/UtilityPKG'
Making install in MultiTimePDEPKG
make[2]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/MultiTimePDEPKG'
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/MultiTimePDEPKG'
make[3]: Nothing to be done for 'install-exec-am'.
make[3]: Nothing to be done for 'install-data-am'.
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/MultiTimePDEPKG'
make[2]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/MultiTimePDEPKG'
Making install in test
make[2]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test'
Making install in MPITest
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/MPITest'
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/MPITest'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/MPITest'
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/MPITest'
Making install in FFTInterface
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/FFTInterface'
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/FFTInterface'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/FFTInterface'
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/FFTInterface'
Making install in LinearAlgebraTest
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/LinearAlgebraTest'
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/LinearAlgebraTest'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/LinearAlgebraTest'
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/LinearAlgebraTest'
Making install in XyceAsLibrary
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/XyceAsLibrary'
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/XyceAsLibrary'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/XyceAsLibrary'
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/XyceAsLibrary'
Making install in DeviceInterface
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/DeviceInterface'
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/DeviceInterface'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/DeviceInterface'
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/DeviceInterface'
Making install in RandomTest
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/RandomTest'
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/RandomTest'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/RandomTest'
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/RandomTest'
Making install in GenExtTestHarnesses
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/GenExtTestHarnesses'
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/GenExtTestHarnesses'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/GenExtTestHarnesses'
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/GenExtTestHarnesses'
Making install in XygraTestHarnesses
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/XygraTestHarnesses'
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/XygraTestHarnesses'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/XygraTestHarnesses'
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test/XygraTestHarnesses'
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test'
make[4]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test'
make[4]: Nothing to be done for 'install-exec-am'.
make[4]: Nothing to be done for 'install-data-am'.
make[4]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test'
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test'
make[2]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src/test'
make[2]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src'
  CCLD     libxyce.la
ar: `u' modifier ignored since `D' is the default (see `U')
  CXXLD    Xyce
make[3]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src'
 /usr/bin/mkdir -p '/home/phung/Documents/Grive/Personal/Analog/Xyce/pkg/Xyce/usr/lib'
 /bin/sh ../libtool   --mode=install /usr/bin/install -c   libxyce.la '/home/phung/Documents/Grive/Personal/Analog/Xyce/pkg/Xyce/usr/lib'
 /usr/bin/mkdir -p '/home/phung/Documents/Grive/Personal/Analog/Xyce/pkg/Xyce/usr/include'
 /usr/bin/mkdir -p '/home/phung/Documents/Grive/Personal/Analog/Xyce/pkg/Xyce/usr/share/xml'
 /usr/bin/install -c -m 644 ../utils/ADMS/xyceVersion.xml ../utils/ADMS/xyceBasicTemplates.xml ../utils/ADMS/xyceImplementationFile.xml ../utils/ADMS/xyceHeaderFile.xml ../utils/ADMS/xyceMakefile.am.xml ../utils/ADMS/xyceBootstrapFile.xml ../utils/ADMS/html_params.xml '/home/phung/Documents/Grive/Personal/Analog/Xyce/pkg/Xyce/usr/share/xml'
 /usr/bin/install -c -m 644 ./AnalysisPKG/N_ANP_fwd.h ./AnalysisPKG/N_ANP_NoiseData.h ./CircuitPKG/N_CIR_Xyce.h ./CircuitPKG/N_CIR_Xygra.h ./CircuitPKG/N_CIR_GenCouplingSimulator.h ./DeviceModelPKG/Core/N_DEV_Configuration.h ./DeviceModelPKG/Core/N_DEV_Const.h ./DeviceModelPKG/Core/N_DEV_Device.h ./DeviceModelPKG/Core/N_DEV_DeviceBlock.h ./DeviceModelPKG/Core/N_DEV_DeviceEntity.h ./DeviceModelPKG/Core/N_DEV_DeviceInstance.h ./DeviceModelPKG/Core/N_DEV_DeviceMaster.h ./DeviceModelPKG/Core/N_DEV_DeviceModel.h ./DeviceModelPKG/Core/N_DEV_DeviceOptions.h ./DeviceModelPKG/Core/N_DEV_DeviceSupport.h ./DeviceModelPKG/Core/N_DEV_InstanceName.h ./DeviceModelPKG/Core/N_DEV_ExternalSimulationData.h ./DeviceModelPKG/Core/N_DEV_ExternData.h ./DeviceModelPKG/Core/N_DEV_fwd.h ./DeviceModelPKG/Core/N_DEV_Message.h ./DeviceModelPKG/Core/N_DEV_Param.h ./DeviceModelPKG/Core/N_DEV_Pars.h ./DeviceModelPKG/Core/N_DEV_SolverState.h ./DeviceModelPKG/Core/N_DEV_Units.h ./DeviceModelPKG/Core/N_DEV_VectorComputeInterface.h ./DeviceModelPKG/OpenModels/N_DEV_ADC.h ./DeviceModelPKG/OpenModels/N_DEV_DAC.h ./DeviceModelPKG/OpenModels/N_DEV_Resistor.h ./DeviceModelPKG/OpenModels/N_DEV_Capacitor.h ./DeviceModelPKG/OpenModels/N_DEV_BJT.h ./DeviceModelPKG/OpenModels/N_DEV_Diode.h ./DeviceModelPKG/OpenModels/N_DEV_MOSFET1.h ./ErrorHandlingPKG/N_ERH_fwd.h ./ErrorHandlingPKG/N_ERH_Message.h ./IOInterfacePKG/N_IO_CmdParse.h ./IOInterfacePKG/N_IO_ExtOutInterface.h ./IOInterfacePKG/N_IO_HangingResistor.h ./IOInterfacePKG/N_IO_OutputTypes.h ./IOInterfacePKG/N_IO_fwd.h ./LinearAlgebraServicesPKG/N_LAS_fwd.h '/home/phung/Documents/Grive/Personal/Analog/Xyce/pkg/Xyce/usr/include'
 /usr/bin/install -c -m 644 ./LinearAlgebraServicesPKG/N_LAS_Vector.h ./LinearAlgebraServicesPKG/N_LAS_Matrix.h ./LinearAlgebraServicesPKG/N_LAS_MultiVector.h ./LoaderServicesPKG/N_LOA_fwd.h ./LoaderServicesPKG/N_LOA_Loader.h ./NonlinearSolverPKG/N_NLS_fwd.h ./NonlinearSolverPKG/N_NLS_TwoLevelEnum.h ./ParallelDistPKG/N_PDS_Manager.h ./ParallelDistPKG/N_PDS_fwd.h ./ParallelDistPKG/N_PDS_MPI.h ./ParallelDistPKG/N_PDS_ParallelMachine.h ./ParallelDistPKG/N_PDS_Serial.h ./TimeIntegrationPKG/N_TIA_TwoLevelError.h ./TimeIntegrationPKG/N_TIA_fwd.h ./TopoManagerPKG/N_TOP_fwd.h ./UtilityPKG/N_UTL_BreakPoint.h ./UtilityPKG/N_UTL_Diagnostic.h ./UtilityPKG/N_UTL_Expression.h ./UtilityPKG/N_UTL_ExpressionSymbolTable.h ./UtilityPKG/N_UTL_ExpressionData.h ./UtilityPKG/N_UTL_fwd.h ./UtilityPKG/N_UTL_FeatureTest.h ./UtilityPKG/N_UTL_FormatTime.h ./UtilityPKG/N_UTL_Interface_Enum_Types.h ./UtilityPKG/N_UTL_JSON.h ./UtilityPKG/N_UTL_MachDepParams.h ./UtilityPKG/N_UTL_Marshal.h ./UtilityPKG/N_UTL_IndexPair.h ./UtilityPKG/N_UTL_Misc.h ./UtilityPKG/N_UTL_Math.h ./UtilityPKG/N_UTL_NameLevelKey.h ./UtilityPKG/N_UTL_NetlistLocation.h ./UtilityPKG/N_UTL_NoCase.h ./UtilityPKG/N_UTL_NodeSymbols.h ./UtilityPKG/N_UTL_Op.h ./UtilityPKG/N_UTL_Pack.h ./UtilityPKG/N_UTL_Param.h ./UtilityPKG/N_UTL_ReportHandler.h ./UtilityPKG/N_UTL_Stats.h ./UtilityPKG/N_UTL_StatMetricTraits.h '/home/phung/Documents/Grive/Personal/Analog/Xyce/pkg/Xyce/usr/include'
 /usr/bin/install -c -m 644 ./UtilityPKG/N_UTL_TypeIndex.h ./UtilityPKG/N_UTL_Xyce.h ../src/Xyce_config.h '/home/phung/Documents/Grive/Personal/Analog/Xyce/pkg/Xyce/usr/include'
libtool: install: /usr/bin/install -c .libs/libxyce.lai /home/phung/Documents/Grive/Personal/Analog/Xyce/pkg/Xyce/usr/lib/libxyce.la
libtool: install: /usr/bin/install -c .libs/libxyce.a /home/phung/Documents/Grive/Personal/Analog/Xyce/pkg/Xyce/usr/lib/libxyce.a
libtool: install: chmod 644 /home/phung/Documents/Grive/Personal/Analog/Xyce/pkg/Xyce/usr/lib/libxyce.a
libtool: install: ranlib /home/phung/Documents/Grive/Personal/Analog/Xyce/pkg/Xyce/usr/lib/libxyce.a
libtool: warning: remember to run 'libtool --finish /usr/lib'
 /usr/bin/mkdir -p '/home/phung/Documents/Grive/Personal/Analog/Xyce/pkg/Xyce/usr/bin'
  /bin/sh ../libtool   --mode=install /usr/bin/install -c Xyce '/home/phung/Documents/Grive/Personal/Analog/Xyce/pkg/Xyce/usr/bin'
libtool: install: /usr/bin/install -c Xyce /home/phung/Documents/Grive/Personal/Analog/Xyce/pkg/Xyce/usr/bin/Xyce
make[3]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src'
make[2]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src'
make[1]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10/src'
make[1]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10'
make[2]: Entering directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10'
make[2]: Nothing to be done for 'install-data-am'.
make[2]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10'
make[1]: Leaving directory '/home/phung/Documents/Grive/Personal/Analog/Xyce/src/Xyce-6.10'
==> Tidying install...
  -> Removing libtool files...
  -> Purging unwanted files...
  -> Removing static library files...
  -> Stripping unneeded symbols from binaries and libraries...
  -> Compressing man and info pages...
==> Checking for packaging issues...
==> Creating package "Xyce"...
  -> Generating .PKGINFO file...
  -> Generating .BUILDINFO file...
  -> Generating .MTREE file...
  -> Compressing package...
==> Leaving fakeroot environment.
==> Finished making: Xyce 6.10-1 (Mon 25 Feb 2019 12:23:54 AM +08)
[phung@archlinux Xyce]$ sudo pacman -U Xyce-6.10-1-x86_64.pkg.tar.xz 
[sudo] password for phung: 
loading packages...
warning: Xyce-6.10-1 is up to date -- reinstalling
resolving dependencies...
looking for conflicting packages...

Packages (1) Xyce-6.10-1

Total Installed Size:  164.80 MiB
Net Upgrade Size:        0.00 MiB

:: Proceed with installation? [Y/n] y
(1/1) checking keys in keyring                                                                                                 [#############################################################################] 100%
(1/1) checking package integrity                                                                                               [#############################################################################] 100%
(1/1) loading package files                                                                                                    [#############################################################################] 100%
(1/1) checking for file conflicts                                                                                              [#############################################################################] 100%
(1/1) checking available disk space                                                                                            [#############################################################################] 100%
:: Processing package changes...
(1/1) reinstalling Xyce                                                                                                        [#############################################################################] 100%
:: Running post-transaction hooks...
(1/1) Arming ConditionNeedsUpdate...
[phung@archlinux Xyce]$ 

Offline

Board footer

Powered by FluxBB