Jump to content

error while loading shared libraries: libsystemc-2.3.3.so: cannot open shared object file: No such file or directory


Recommended Posts

Hello,

I am trying to run a program based on SystemC and keep getting this error:

error while loading shared libraries: libsystemc-2.3.3.so: cannot open shared object file: No such file or directory

I tried to update the environment path variables using the commands:

export LD_LIBRARY_PATH=/home/israa/systemc-2.3.3/lib-linux64

However, still no luck. Could you please help me?

Regards,

 

Issraa

Link to comment
Share on other sites

total 884
drwxrwxr-x 11 israa israa   4096 تشرين الثاني  3 10:38 .
drwxr-xr-x 26 israa israa   4096 تشرين الأول  31 10:17 ..
-rw-rw-r--  1 israa israa  44922 تشرين الأول  13  2018 aclocal.m4
-rw-rw-r--  1 israa israa   2165 تشرين الأول  13  2018 AUTHORS
-rw-rw-r--  1 israa israa   1540 تشرين الأول  13  2018 ChangeLog
drwxrwxr-x  2 israa israa   4096 تشرين الأول  13  2018 cmake
-rw-rw-r--  1 israa israa  38817 تشرين الأول  13  2018 CMakeLists.txt
drwxrwxr-x  2 israa israa   4096 تشرين الأول  13  2018 config
-rwxrwxr-x  1 israa israa 602502 تشرين الأول  13  2018 configure
-rw-rw-r--  1 israa israa  21809 تشرين الأول  13  2018 configure.ac
drwxrwxr-x  4 israa israa   4096 تشرين الأول  13  2018 docs
drwxrwxr-x  6 israa israa   4096 تشرين الأول  13  2018 examples
drwxrwxr-x  5 israa israa   4096 تشرين الثاني  9 12:02 include
-rw-rw-r--  1 israa israa  29943 تشرين الأول  13  2018 INSTALL
drwxrwxr-x  3 israa israa   4096 تشرين الثاني  9 12:02 lib-linux64
-rw-rw-r--  1 israa israa  11358 تشرين الأول  13  2018 LICENSE
-rw-rw-r--  1 israa israa   2626 تشرين الأول  13  2018 Makefile.am
-rw-rw-r--  1 israa israa  29739 تشرين الأول  13  2018 Makefile.in
drwxrwxr-x  3 israa israa   4096 تشرين الأول  13  2018 msvc10
-rw-rw-r--  1 israa israa   4597 تشرين الأول  13  2018 NEWS
-rw-rw-r--  1 israa israa   3315 تشرين الأول  13  2018 NOTICE
drwxrwxr-x  5 israa israa   4096 تشرين الثاني  3 10:29 objdir
-rw-rw-r--  1 israa israa   4696 تشرين الأول  13  2018 README
-rw-rw-r--  1 israa israa  31844 تشرين الأول  13  2018 RELEASENOTES
drwxrwxr-x  5 israa israa   4096 تشرين الأول  13  2018 src
 

Link to comment
Share on other sites

Hello @Issraa,

From the looks of it seems that you have built and installed the SystemC library in the source directory.

Usually from a developer perspective I keep the source and installation location separate.

Below is a representative directory layout that I follow for my development practices.

# Sample layout of the SystemC sources and installation paths
$ ls
systemc-2.3.3                 #< Unzipped from below tarball sources for SystemC library
systemc-2.3.3.tar.gz          #< Sources Downloaded from Accellera
systemc                       #< Installation location of the generated build of SystemC library from systemc-2.3.3 sources

# Below layout is representative of a CMake Configure SystemC library.
$ ls systemc/
include/
lib/
share/

Can you elaborate on the steps you took to configure and build the SystemC library?

Regards,

Ameya Vikram Singh

 

Link to comment
Share on other sites

  • 2 weeks later...

Good morning @AmeyaVS, I follow these steps:


Basic SystemC Installation
==========================

To install SystemC on a UNIX system, do the following steps:

  1. Change to the top level directory (systemc-2.3.2)

  2. Create a temporary directory, e.g.,

        > mkdir objdir

  3. Change to the temporary directory, e.g.,

        > cd objdir

  4. Choose your compiler by setting the CXX environment variable
     (the configure script tries to guess the default compiler, if
      this step is omitted):

     If you use a POSIX-compatible shell (e.g. bash):

        > export CXX="<compiler>"

     e.g. for GCC compilers

        > export CXX=g++

     The Clang compiler is usually named 'clang++', thus e.g.

        > export CXX=clang++

     When using a C shell (e.g. csh/tcsh), the syntax to set the
     environment variable is different:

        > setenv CXX g++

     For the Sun/Solaris Studio compilers, use

        > setenv CXX CC

     You can also specify an absolute path to the compiler of your choice.

     See also the Section "Compilation and Linking Options" below.


  5. Configure the package for your system, e.g.,
     (The configure script is explained below.)

        > ../configure

     While the 'configure' script is running, which takes a few moments,
     it prints messages to inform you of the features it is checking.
     It also detects the platform.

     Note for System V users:
     If you are using `csh' on an older version of System V, you might
     need to use the `sh ../configure' command instead of '../configure'.
     Otherwise, `csh' will attempt to `configure' itself.

     SystemC 2.3 includes a fixed-point package that is always built.
     When compiling your applications with fixed-point types, you still have
     to use compiler flag -DSC_INCLUDE_FX. Note that compile times increase
     significantly when using this compiler flag.

     In case you want to install the package in another place than the
     top level directory (systemc-2.3.2), configure the package e.g. as
     follows:

        > ../configure --prefix=/usr/local/systemc-2.3.2

     Note: make sure you have created the target directory before installing
           the package. Do _not_ use /usr/local as a prefix, unless you
           follow the Unix/FHS directory layouts (see below).

     A fine grained configuration of the installation directories can
     be achieved via additional options, given to the configure script.

     By default, the files are installed directly to the PREFIX directory
     root and the library is installed to PREFIX/lib-<TARGETARCH>,
     depending on the current target architecture.  This may be undesired
     in cases where the package is meant to be installed in a system-wide
     location as part of shared (default) library and include hierarchies
     (e.g. /usr/local, /usr, /opt, ...).  To follow the Unix/FHS directory
     standards, you can use the following options:

       --with-unix-layout     use Unix directory layout for installation
                              [default=no]
         when "yes", the following (fine-grained) settings will be used:

       --includedir=DIR       C++ header files      [PREFIX/include]
       --libdir=DIR           object code libraries [EPREFIX/lib]
       --docdir=DIR           documentation root    [DATAROOTDIR/doc/systemc]

     The library destination itself can be further and separately configured
     by using the following option:

       --with-arch-suffix     add suffix to library installation directory
                              [default=-<TARGETARCH>]

     With this option, one can easily follow e.g. the "multi-arch"
     conventions on some platforms:

       ../configure --with-arch-suffix=32                # lib32
       ../configure --with-arch-suffix=/x86_64-linux-gnu # lib/x86_64-linux-gnu

     Several options are available to the configure script to modify
     the compiler configuration and the selection of certain features:

       --disable-shared        do not build shared library (libsystemc.so)
       --enable-debug          include debugging symbols
       --disable-optimize      disable compiler optimization
       --disable-async-updates disable request_async_update support
       --enable-pthreads       use POSIX threads for SystemC processes
       --enable-phase-callbacks
                               enable simulation phase callbacks (experimental)


     See the section on the general usage of the configure script and
     "../configure --help" for more information.

     Note: When linking against a static library of SystemC with asynchronous
           update support enabled, you may need to explicitly link against the
           pthread library as well (-lpthread).

     Note: If you change the configuration after having compiled the
           package already, you should run a "gmake clean" before
           recompiling.

  6. Compile the package.

        > gmake

     Note: The explicit gmake targets "opt" and "debug", etc. have
           been removed in this package.  Use the corresponding
           options to the configure script instead.

  7. At this point you may wish to verify the compiled package by
     testing the example suite.

        > gmake check

     This will compile and run the examples in the subdirectory
     examples.

  8. Install the package.

        > gmake install

  9. You can now remove the temporary directory, .e.g,

        > cd ..
        > rm -rf objdir

     Alternatively, you can keep the temporary directory to allow you to:

     a) Experiment with the examples.

     b) Later uninstall the package. To clean up the temporary
        directory, enter:

            > gmake clean

        To uninstall the package, enter:

            > gmake uninstall
 

 

 

Link to comment
Share on other sites

Hello @Issraa,

It would be great if you could post the exact commands used.

#For e.g. the configure command:
# Did you use this
../configure
#or this one
../configure --prefix=<some path for systemc installation>

What is the output of the following command:

make install

Did it install the SystemC library without any issues?

If yes.

Try setting the following environment variables:

# Below snippet compatible with bash shell
export SYSTEMC_HOME=<path when the make install command copied the files>
# If "echo $LD_LIBRARY_PATH" is not empty
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$SYSTEMC_HOME/lib-linux64

Hope this helps.

Regards,

Ameya Vikram Singh

Link to comment
Share on other sites

Hi @AmeyaVS,

Thank you for your response I used the following command:

../configure

and then when I used the command 

make install

there were no issue

Also I tried the commands that you suggested: 

export SYSTEMC_HOME=<path when the make install command copied the files>
# If "echo $LD_LIBRARY_PATH" is not empty
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$SYSTEMC_HOME/lib-linux64

 

and when I use the command "echo $LD_LIBRARY_PATH" I get:

/home/israa/systemc-2.3.3/lib-linux64:/home/israa/systemc-2.3.3/lib-linux64

However, the same error message show up! could please let me know what should I do?

 

Regards,

 

Israa

Link to comment
Share on other sites

Hi everyone,

For the installation I used the following exact commands:

> mkdir objdir

> cd objdir

> export CXX=g++

>../configure

> make

> make check

> make install

and every thing run without any errors

However, when I run my simulator based on SystemC I still get the following error:

error while loading shared libraries: libsystemc-2.3.3.so: cannot open shared object file: No such file or directory

 

regards,

Israa

 

Link to comment
Share on other sites

Hello @Issraa,

Using default for configure script would probably generate the installation location to:

/opt/systemc
# or something similar.

You would get error while trying to run the installation target if you don't have necessary privileges:

make install

Can you post the output you get on the terminal after running the previous command?

Also, while setting the following environment variable:

# Instead of this:
export LD_LIBRARY_PATH=/home/israa/systemc-2.3.3/lib-linux64
# Can you try with this:
export LD_LIBRARY_PATH=/opt/systemc/lib-linux64

Also, I would recommend to review my previous post:

Hope this helps.

Regards,

Ameya Vikram Singh

Link to comment
Share on other sites

Dear @AmeyaVS,

 

Thank you for your fast response.

I reinstalled the SystemC in separated directory based on your suggestion using this command:

../configure --prefix=/home/israa/systemc

and when I get to the command "make install" this is the full output:

Making install in docs
make[1]: Entering directory '/home/israa/systemc-2.3.3/objdir/docs'
make[2]: Entering directory '/home/israa/systemc-2.3.3/objdir/docs'
make[2]: Nothing to be done for 'install-exec-am'.
 /usr/bin/mkdir -p '/home/israa/systemc/docs'
 /usr/bin/mkdir -p '/home/israa/systemc/docs/tlm/release'
 /usr/bin/install -c -m 644  ../../docs/tlm/release/TLM_2_0_requirements.pdf ../../docs/tlm/release/TLM_2_0_white_paper.pdf ../../docs/tlm/release/README.txt ../../docs/tlm/release/TLM_2_0_presentation.ppt ../../docs/tlm/release/TLM_2_0_presentation.pdf '/home/israa/systemc/docs/tlm/release'
 /usr/bin/mkdir -p '/home/israa/systemc/docs/tlm'
 /usr/bin/install -c -m 644  ../../docs/tlm/ChangeLog ../../docs/tlm/tlm_README '/home/israa/systemc/docs/tlm'
 /usr/bin/mkdir -p '/home/israa/systemc/docs/sysc'
 /usr/bin/install -c -m 644  ../../docs/sysc/README ../../docs/sysc/SystemC_2011_New_Features.pdf '/home/israa/systemc/docs/sysc'
 /usr/bin/mkdir -p '/home/israa/systemc/docs/tlm/doxygen'
 /usr/bin/install -c -m 644  tlm/doxygen/Doxyfile '/home/israa/systemc/docs/tlm/doxygen'
 /usr/bin/mkdir -p '/home/israa/systemc/docs/sysc/doxygen'
 /usr/bin/install -c -m 644  sysc/doxygen/Doxyfile '/home/israa/systemc/docs/sysc/doxygen'
 /usr/bin/mkdir -p '/home/israa/systemc/docs/sysc/archived'
 /usr/bin/install -c -m 644  ../../docs/sysc/archived/README ../../docs/sysc/archived/FuncSpec20.pdf ../../docs/sysc/archived/WhitePaper20.pdf ../../docs/sysc/archived/UserGuide20.pdf ../../docs/sysc/archived/SystemC_2_1_overview.pdf ../../docs/sysc/archived/SystemC_2_1_features.pdf '/home/israa/systemc/docs/sysc/archived'
make[2]: Leaving directory '/home/israa/systemc-2.3.3/objdir/docs'
make[1]: Leaving directory '/home/israa/systemc-2.3.3/objdir/docs'
Making install in src
make[1]: Entering directory '/home/israa/systemc-2.3.3/objdir/src'
Making install in sysc
make[2]: Entering directory '/home/israa/systemc-2.3.3/objdir/src/sysc'
Making install in packages/boost
make[3]: Entering directory '/home/israa/systemc-2.3.3/objdir/src/sysc/packages/boost'
make[4]: Entering directory '/home/israa/systemc-2.3.3/objdir/src/sysc/packages/boost'
make[4]: Nothing to be done for 'install-exec-am'.
 /usr/bin/mkdir -p '/home/israa/systemc/include/sysc/packages/boost'
 /usr/bin/mkdir -p '/home/israa/systemc/include/sysc/packages/boost/config'
 /usr/bin/install -c -m 644  ../../../../../src/sysc/packages/boost/config/posix_features.hpp ../../../../../src/sysc/packages/boost/config/select_compiler_config.hpp ../../../../../src/sysc/packages/boost/config/select_platform_config.hpp ../../../../../src/sysc/packages/boost/config/select_stdlib_config.hpp ../../../../../src/sysc/packages/boost/config/suffix.hpp ../../../../../src/sysc/packages/boost/config/user.hpp '/home/israa/systemc/include/sysc/packages/boost/config'
 /usr/bin/mkdir -p '/home/israa/systemc/include/sysc/packages/boost/config/platform'
 /usr/bin/install -c -m 644  ../../../../../src/sysc/packages/boost/config/platform/aix.hpp ../../../../../src/sysc/packages/boost/config/platform/amigaos.hpp ../../../../../src/sysc/packages/boost/config/platform/beos.hpp ../../../../../src/sysc/packages/boost/config/platform/bsd.hpp ../../../../../src/sysc/packages/boost/config/platform/cygwin.hpp ../../../../../src/sysc/packages/boost/config/platform/hpux.hpp ../../../../../src/sysc/packages/boost/config/platform/irix.hpp ../../../../../src/sysc/packages/boost/config/platform/linux.hpp ../../../../../src/sysc/packages/boost/config/platform/macos.hpp ../../../../../src/sysc/packages/boost/config/platform/solaris.hpp ../../../../../src/sysc/packages/boost/config/platform/win32.hpp '/home/israa/systemc/include/sysc/packages/boost/config/platform'
 /usr/bin/mkdir -p '/home/israa/systemc/include/sysc/packages/boost/detail'
 /usr/bin/install -c -m 644  ../../../../../src/sysc/packages/boost/detail/endian.hpp ../../../../../src/sysc/packages/boost/detail/workaround.hpp '/home/israa/systemc/include/sysc/packages/boost/detail'
 /usr/bin/mkdir -p '/home/israa/systemc/include/sysc/packages/boost/mpl/aux_/config'
 /usr/bin/install -c -m 644  ../../../../../src/sysc/packages/boost/mpl/aux_/config/adl.hpp ../../../../../src/sysc/packages/boost/mpl/aux_/config/gcc.hpp ../../../../../src/sysc/packages/boost/mpl/aux_/config/intel.hpp ../../../../../src/sysc/packages/boost/mpl/aux_/config/msvc.hpp ../../../../../src/sysc/packages/boost/mpl/aux_/config/static_constant.hpp ../../../../../src/sysc/packages/boost/mpl/aux_/config/workaround.hpp '/home/israa/systemc/include/sysc/packages/boost/mpl/aux_/config'
 /usr/bin/mkdir -p '/home/israa/systemc/include/sysc/packages/boost/mpl'
 /usr/bin/install -c -m 644  ../../../../../src/sysc/packages/boost/mpl/bool.hpp ../../../../../src/sysc/packages/boost/mpl/bool_fwd.hpp ../../../../../src/sysc/packages/boost/mpl/integral_c_tag.hpp '/home/israa/systemc/include/sysc/packages/boost/mpl'
 /usr/bin/mkdir -p '/home/israa/systemc/include/sysc/packages/boost/utility'
 /usr/bin/install -c -m 644  ../../../../../src/sysc/packages/boost/utility/addressof.hpp ../../../../../src/sysc/packages/boost/utility/enable_if.hpp ../../../../../src/sysc/packages/boost/utility/string_view.hpp ../../../../../src/sysc/packages/boost/utility/string_view_fwd.hpp '/home/israa/systemc/include/sysc/packages/boost/utility'
 /usr/bin/mkdir -p '/home/israa/systemc/include/sysc/packages/boost/mpl/aux_'
 /usr/bin/install -c -m 644  ../../../../../src/sysc/packages/boost/mpl/aux_/adl_barrier.hpp '/home/israa/systemc/include/sysc/packages/boost/mpl/aux_'
 /usr/bin/mkdir -p '/home/israa/systemc/include/sysc/packages/boost/config/stdlib'
 /usr/bin/install -c -m 644  ../../../../../src/sysc/packages/boost/config/stdlib/dinkumware.hpp ../../../../../src/sysc/packages/boost/config/stdlib/libcomo.hpp ../../../../../src/sysc/packages/boost/config/stdlib/libstdcpp3.hpp ../../../../../src/sysc/packages/boost/config/stdlib/modena.hpp ../../../../../src/sysc/packages/boost/config/stdlib/msl.hpp ../../../../../src/sysc/packages/boost/config/stdlib/roguewave.hpp ../../../../../src/sysc/packages/boost/config/stdlib/sgi.hpp ../../../../../src/sysc/packages/boost/config/stdlib/stlport.hpp ../../../../../src/sysc/packages/boost/config/stdlib/vacpp.hpp '/home/israa/systemc/include/sysc/packages/boost/config/stdlib'
 /usr/bin/mkdir -p '/home/israa/systemc/include/sysc/packages/boost/config/compiler'
 /usr/bin/install -c -m 644  ../../../../../src/sysc/packages/boost/config/compiler/borland.hpp ../../../../../src/sysc/packages/boost/config/compiler/comeau.hpp ../../../../../src/sysc/packages/boost/config/compiler/common_edg.hpp ../../../../../src/sysc/packages/boost/config/compiler/compaq_cxx.hpp ../../../../../src/sysc/packages/boost/config/compiler/digitalmars.hpp ../../../../../src/sysc/packages/boost/config/compiler/gcc.hpp ../../../../../src/sysc/packages/boost/config/compiler/greenhills.hpp ../../../../../src/sysc/packages/boost/config/compiler/hp_acc.hpp ../../../../../src/sysc/packages/boost/config/compiler/intel.hpp ../../../../../src/sysc/packages/boost/config/compiler/kai.hpp ../../../../../src/sysc/packages/boost/config/compiler/metrowerks.hpp ../../../../../src/sysc/packages/boost/config/compiler/mpw.hpp ../../../../../src/sysc/packages/boost/config/compiler/sgi_mipspro.hpp ../../../../../src/sysc/packages/boost/config/compiler/sunpro_cc.hpp ../../../../../src/sysc/packages/boost/config/compiler/vacpp.hpp ../../../../../src/sysc/packages/boost/config/compiler/visualc.hpp '/home/israa/systemc/include/sysc/packages/boost/config/compiler'
 /usr/bin/mkdir -p '/home/israa/systemc/include/sysc/packages/boost/bind'
 /usr/bin/install -c -m 644  ../../../../../src/sysc/packages/boost/bind/apply.hpp ../../../../../src/sysc/packages/boost/bind/arg.hpp ../../../../../src/sysc/packages/boost/bind/bind_cc.hpp ../../../../../src/sysc/packages/boost/bind/bind_mf_cc.hpp ../../../../../src/sysc/packages/boost/bind/bind_template.hpp ../../../../../src/sysc/packages/boost/bind/make_adaptable.hpp ../../../../../src/sysc/packages/boost/bind/mem_fn_cc.hpp ../../../../../src/sysc/packages/boost/bind/mem_fn_template.hpp ../../../../../src/sysc/packages/boost/bind/mem_fn_vw.hpp ../../../../../src/sysc/packages/boost/bind/placeholders.hpp ../../../../../src/sysc/packages/boost/bind/protect.hpp '/home/israa/systemc/include/sysc/packages/boost/bind'
 /usr/bin/install -c -m 644  ../../../../../src/sysc/packages/boost/bind.hpp ../../../../../src/sysc/packages/boost/config.hpp ../../../../../src/sysc/packages/boost/get_pointer.hpp ../../../../../src/sysc/packages/boost/mem_fn.hpp ../../../../../src/sysc/packages/boost/non_type.hpp ../../../../../src/sysc/packages/boost/ref.hpp ../../../../../src/sysc/packages/boost/type.hpp '/home/israa/systemc/include/sysc/packages/boost/.'
make[4]: Leaving directory '/home/israa/systemc-2.3.3/objdir/src/sysc/packages/boost'
make[3]: Leaving directory '/home/israa/systemc-2.3.3/objdir/src/sysc/packages/boost'
Making install in packages/qt
make[3]: Entering directory '/home/israa/systemc-2.3.3/objdir/src/sysc/packages/qt'
make  install-am
make[4]: Entering directory '/home/israa/systemc-2.3.3/objdir/src/sysc/packages/qt'
make[5]: Entering directory '/home/israa/systemc-2.3.3/objdir/src/sysc/packages/qt'
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/israa/systemc-2.3.3/objdir/src/sysc/packages/qt'
make[4]: Leaving directory '/home/israa/systemc-2.3.3/objdir/src/sysc/packages/qt'
make[3]: Leaving directory '/home/israa/systemc-2.3.3/objdir/src/sysc/packages/qt'
make[3]: Entering directory '/home/israa/systemc-2.3.3/objdir/src/sysc'
make[4]: Entering directory '/home/israa/systemc-2.3.3/objdir/src/sysc'
make[4]: Nothing to be done for 'install-exec-am'.
 /usr/bin/mkdir -p '/home/israa/systemc/include/sysc'
 /usr/bin/mkdir -p '/home/israa/systemc/include/sysc/datatypes/int'
 /usr/bin/install -c -m 644  ../../../src/sysc/datatypes/int/sc_bigint.h ../../../src/sysc/datatypes/int/sc_biguint.h ../../../src/sysc/datatypes/int/sc_int.h ../../../src/sysc/datatypes/int/sc_int_base.h ../../../src/sysc/datatypes/int/sc_int_ids.h ../../../src/sysc/datatypes/int/sc_length_param.h ../../../src/sysc/datatypes/int/sc_nbdefs.h ../../../src/sysc/datatypes/int/sc_nbexterns.h ../../../src/sysc/datatypes/int/sc_nbutils.h ../../../src/sysc/datatypes/int/sc_signed.h ../../../src/sysc/datatypes/int/sc_uint.h ../../../src/sysc/datatypes/int/sc_uint_base.h ../../../src/sysc/datatypes/int/sc_unsigned.h '/home/israa/systemc/include/sysc/datatypes/int'
 /usr/bin/mkdir -p '/home/israa/systemc/include/sysc/datatypes/fx'
 /usr/bin/install -c -m 644  ../../../src/sysc/datatypes/fx/fx.h ../../../src/sysc/datatypes/fx/sc_context.h ../../../src/sysc/datatypes/fx/sc_fix.h ../../../src/sysc/datatypes/fx/sc_fixed.h ../../../src/sysc/datatypes/fx/sc_fx_ids.h ../../../src/sysc/datatypes/fx/sc_fxcast_switch.h ../../../src/sysc/datatypes/fx/sc_fxdefs.h ../../../src/sysc/datatypes/fx/sc_fxnum.h ../../../src/sysc/datatypes/fx/sc_fxnum_observer.h ../../../src/sysc/datatypes/fx/sc_fxtype_params.h ../../../src/sysc/datatypes/fx/sc_fxval.h ../../../src/sysc/datatypes/fx/sc_fxval_observer.h ../../../src/sysc/datatypes/fx/sc_ufix.h ../../../src/sysc/datatypes/fx/sc_ufixed.h ../../../src/sysc/datatypes/fx/scfx_ieee.h ../../../src/sysc/datatypes/fx/scfx_mant.h ../../../src/sysc/datatypes/fx/scfx_other_defs.h ../../../src/sysc/datatypes/fx/scfx_params.h ../../../src/sysc/datatypes/fx/scfx_rep.h ../../../src/sysc/datatypes/fx/scfx_string.h ../../../src/sysc/datatypes/fx/scfx_utils.h '/home/israa/systemc/include/sysc/datatypes/fx'
 /usr/bin/mkdir -p '/home/israa/systemc/include/sysc/datatypes/misc'
 /usr/bin/install -c -m 644  ../../../src/sysc/datatypes/misc/sc_concatref.h ../../../src/sysc/datatypes/misc/sc_value_base.h '/home/israa/systemc/include/sysc/datatypes/misc'
 /usr/bin/mkdir -p '/home/israa/systemc/include/sysc/utils'
 /usr/bin/install -c -m 644  ../../../src/sysc/utils/sc_hash.h ../../../src/sysc/utils/sc_list.h ../../../src/sysc/utils/sc_machine.h ../../../src/sysc/utils/sc_mempool.h ../../../src/sysc/utils/sc_pq.h ../../../src/sysc/utils/sc_pvector.h ../../../src/sysc/utils/sc_report.h ../../../src/sysc/utils/sc_report_handler.h ../../../src/sysc/utils/sc_string.h ../../../src/sysc/utils/sc_string_view.h ../../../src/sysc/utils/sc_temporary.h ../../../src/sysc/utils/sc_typeindex.h ../../../src/sysc/utils/sc_utils_ids.h ../../../src/sysc/utils/sc_vector.h '/home/israa/systemc/include/sysc/utils'
 /usr/bin/mkdir -p '/home/israa/systemc/include/sysc/kernel'
 /usr/bin/install -c -m 644  ../../../src/sysc/kernel/sc_attribute.h ../../../src/sysc/kernel/sc_cmnhdr.h ../../../src/sysc/kernel/sc_constants.h ../../../src/sysc/kernel/sc_cor.h ../../../src/sysc/kernel/sc_dynamic_processes.h ../../../src/sysc/kernel/sc_event.h ../../../src/sysc/kernel/sc_except.h ../../../src/sysc/kernel/sc_externs.h ../../../src/sysc/kernel/sc_join.h ../../../src/sysc/kernel/sc_kernel_ids.h ../../../src/sysc/kernel/sc_macros.h ../../../src/sysc/kernel/sc_module.h ../../../src/sysc/kernel/sc_module_name.h ../../../src/sysc/kernel/sc_object.h ../../../src/sysc/kernel/sc_process.h ../../../src/sysc/kernel/sc_process_handle.h ../../../src/sysc/kernel/sc_runnable.h ../../../src/sysc/kernel/sc_sensitive.h ../../../src/sysc/kernel/sc_spawn.h ../../../src/sysc/kernel/sc_spawn_options.h ../../../src/sysc/kernel/sc_status.h ../../../src/sysc/kernel/sc_simcontext.h ../../../src/sysc/kernel/sc_time.h ../../../src/sysc/kernel/sc_ver.h ../../../src/sysc/kernel/sc_wait.h ../../../src/sysc/kernel/sc_wait_cthread.h '/home/israa/systemc/include/sysc/kernel'
 /usr/bin/mkdir -p '/home/israa/systemc/include/sysc/communication'
 /usr/bin/install -c -m 644  ../../../src/sysc/communication/sc_buffer.h ../../../src/sysc/communication/sc_clock.h ../../../src/sysc/communication/sc_clock_ports.h ../../../src/sysc/communication/sc_communication_ids.h ../../../src/sysc/communication/sc_event_finder.h ../../../src/sysc/communication/sc_event_queue.h ../../../src/sysc/communication/sc_export.h ../../../src/sysc/communication/sc_fifo.h ../../../src/sysc/communication/sc_fifo_ifs.h ../../../src/sysc/communication/sc_fifo_ports.h ../../../src/sysc/communication/sc_host_mutex.h ../../../src/sysc/communication/sc_host_semaphore.h ../../../src/sysc/communication/sc_interface.h ../../../src/sysc/communication/sc_mutex.h ../../../src/sysc/communication/sc_mutex_if.h ../../../src/sysc/communication/sc_port.h ../../../src/sysc/communication/sc_prim_channel.h ../../../src/sysc/communication/sc_semaphore.h ../../../src/sysc/communication/sc_semaphore_if.h ../../../src/sysc/communication/sc_signal.h ../../../src/sysc/communication/sc_signal_ifs.h ../../../src/sysc/communication/sc_signal_ports.h ../../../src/sysc/communication/sc_signal_resolved.h ../../../src/sysc/communication/sc_signal_resolved_ports.h ../../../src/sysc/communication/sc_signal_rv.h ../../../src/sysc/communication/sc_signal_rv_ports.h ../../../src/sysc/communication/sc_writer_policy.h '/home/israa/systemc/include/sysc/communication'
 /usr/bin/mkdir -p '/home/israa/systemc/include/sysc/datatypes/bit'
 /usr/bin/install -c -m 644  ../../../src/sysc/datatypes/bit/sc_bit.h ../../../src/sysc/datatypes/bit/sc_bit_ids.h ../../../src/sysc/datatypes/bit/sc_bit_proxies.h ../../../src/sysc/datatypes/bit/sc_bv.h ../../../src/sysc/datatypes/bit/sc_bv_base.h ../../../src/sysc/datatypes/bit/sc_logic.h ../../../src/sysc/datatypes/bit/sc_lv.h ../../../src/sysc/datatypes/bit/sc_lv_base.h ../../../src/sysc/datatypes/bit/sc_proxy.h '/home/israa/systemc/include/sysc/datatypes/bit'
 /usr/bin/mkdir -p '/home/israa/systemc/include/sysc/tracing'
 /usr/bin/install -c -m 644  ../../../src/sysc/tracing/sc_trace.h ../../../src/sysc/tracing/sc_tracing_ids.h '/home/israa/systemc/include/sysc/tracing'
make[4]: Leaving directory '/home/israa/systemc-2.3.3/objdir/src/sysc'
make[3]: Leaving directory '/home/israa/systemc-2.3.3/objdir/src/sysc'
make[2]: Leaving directory '/home/israa/systemc-2.3.3/objdir/src/sysc'
Making install in tlm_core
make[2]: Entering directory '/home/israa/systemc-2.3.3/objdir/src/tlm_core'
make[3]: Entering directory '/home/israa/systemc-2.3.3/objdir/src/tlm_core'
make[3]: Nothing to be done for 'install-exec-am'.
 /usr/bin/mkdir -p '/home/israa/systemc/include/tlm_core'
 /usr/bin/mkdir -p '/home/israa/systemc/include/tlm_core/tlm_1/tlm_req_rsp/tlm_ports'
 /usr/bin/install -c -m 644  ../../../src/tlm_core/tlm_1/tlm_req_rsp/tlm_ports/tlm_event_finder.h ../../../src/tlm_core/tlm_1/tlm_req_rsp/tlm_ports/tlm_nonblocking_port.h '/home/israa/systemc/include/tlm_core/tlm_1/tlm_req_rsp/tlm_ports'
 /usr/bin/mkdir -p '/home/israa/systemc/include/tlm_core/tlm_2/tlm_sockets'
 /usr/bin/install -c -m 644  ../../../src/tlm_core/tlm_2/tlm_sockets/tlm_base_socket_if.h ../../../src/tlm_core/tlm_2/tlm_sockets/tlm_initiator_socket.h ../../../src/tlm_core/tlm_2/tlm_sockets/tlm_sockets.h ../../../src/tlm_core/tlm_2/tlm_sockets/tlm_target_socket.h '/home/israa/systemc/include/tlm_core/tlm_2/tlm_sockets'
 /usr/bin/mkdir -p '/home/israa/systemc/include/tlm_core/tlm_2/tlm_2_interfaces'
 /usr/bin/install -c -m 644  ../../../src/tlm_core/tlm_2/tlm_2_interfaces/tlm_2_interfaces.h ../../../src/tlm_core/tlm_2/tlm_2_interfaces/tlm_dmi.h ../../../src/tlm_core/tlm_2/tlm_2_interfaces/tlm_fw_bw_ifs.h '/home/israa/systemc/include/tlm_core/tlm_2/tlm_2_interfaces'
 /usr/bin/mkdir -p '/home/israa/systemc/include/tlm_core/tlm_1/tlm_req_rsp'
 /usr/bin/install -c -m 644  ../../../src/tlm_core/tlm_1/tlm_req_rsp/tlm_req_rsp.h '/home/israa/systemc/include/tlm_core/tlm_1/tlm_req_rsp'
 /usr/bin/mkdir -p '/home/israa/systemc/include/tlm_core/tlm_1/tlm_req_rsp/tlm_1_interfaces'
 /usr/bin/install -c -m 644  ../../../src/tlm_core/tlm_1/tlm_req_rsp/tlm_1_interfaces/tlm_core_ifs.h ../../../src/tlm_core/tlm_1/tlm_req_rsp/tlm_1_interfaces/tlm_fifo_ifs.h ../../../src/tlm_core/tlm_1/tlm_req_rsp/tlm_1_interfaces/tlm_master_slave_ifs.h ../../../src/tlm_core/tlm_1/tlm_req_rsp/tlm_1_interfaces/tlm_tag.h '/home/israa/systemc/include/tlm_core/tlm_1/tlm_req_rsp/tlm_1_interfaces'
 /usr/bin/mkdir -p '/home/israa/systemc/include/tlm_core/tlm_1/tlm_req_rsp/tlm_channels/tlm_req_rsp_channels'
 /usr/bin/install -c -m 644  ../../../src/tlm_core/tlm_1/tlm_req_rsp/tlm_channels/tlm_req_rsp_channels/tlm_put_get_imp.h ../../../src/tlm_core/tlm_1/tlm_req_rsp/tlm_channels/tlm_req_rsp_channels/tlm_req_rsp_channels.h '/home/israa/systemc/include/tlm_core/tlm_1/tlm_req_rsp/tlm_channels/tlm_req_rsp_channels'
 /usr/bin/mkdir -p '/home/israa/systemc/include/tlm_core/tlm_2/tlm_quantum'
 /usr/bin/install -c -m 644  ../../../src/tlm_core/tlm_2/tlm_quantum/tlm_global_quantum.h ../../../src/tlm_core/tlm_2/tlm_quantum/tlm_quantum.h '/home/israa/systemc/include/tlm_core/tlm_2/tlm_quantum'
 /usr/bin/mkdir -p '/home/israa/systemc/include/tlm_core/tlm_1/tlm_req_rsp/tlm_channels/tlm_fifo'
 /usr/bin/install -c -m 644  ../../../src/tlm_core/tlm_1/tlm_req_rsp/tlm_channels/tlm_fifo/circular_buffer.h ../../../src/tlm_core/tlm_1/tlm_req_rsp/tlm_channels/tlm_fifo/tlm_fifo.h ../../../src/tlm_core/tlm_1/tlm_req_rsp/tlm_channels/tlm_fifo/tlm_fifo_peek.h ../../../src/tlm_core/tlm_1/tlm_req_rsp/tlm_channels/tlm_fifo/tlm_fifo_put_get.h ../../../src/tlm_core/tlm_1/tlm_req_rsp/tlm_channels/tlm_fifo/tlm_fifo_resize.h '/home/israa/systemc/include/tlm_core/tlm_1/tlm_req_rsp/tlm_channels/tlm_fifo'
 /usr/bin/mkdir -p '/home/israa/systemc/include/tlm_core/tlm_1/tlm_analysis'
 /usr/bin/install -c -m 644  ../../../src/tlm_core/tlm_1/tlm_analysis/tlm_analysis.h ../../../src/tlm_core/tlm_1/tlm_analysis/tlm_analysis_fifo.h ../../../src/tlm_core/tlm_1/tlm_analysis/tlm_analysis_if.h ../../../src/tlm_core/tlm_1/tlm_analysis/tlm_analysis_port.h ../../../src/tlm_core/tlm_1/tlm_analysis/tlm_analysis_triple.h ../../../src/tlm_core/tlm_1/tlm_analysis/tlm_write_if.h '/home/israa/systemc/include/tlm_core/tlm_1/tlm_analysis'
 /usr/bin/mkdir -p '/home/israa/systemc/include/tlm_core/tlm_2/tlm_generic_payload'
 /usr/bin/install -c -m 644  ../../../src/tlm_core/tlm_2/tlm_generic_payload/tlm_array.h ../../../src/tlm_core/tlm_2/tlm_generic_payload/tlm_endian_conv.h ../../../src/tlm_core/tlm_2/tlm_generic_payload/tlm_generic_payload.h ../../../src/tlm_core/tlm_2/tlm_generic_payload/tlm_gp.h ../../../src/tlm_core/tlm_2/tlm_generic_payload/tlm_helpers.h ../../../src/tlm_core/tlm_2/tlm_generic_payload/tlm_phase.h '/home/israa/systemc/include/tlm_core/tlm_2/tlm_generic_payload'
 /usr/bin/mkdir -p '/home/israa/systemc/include/tlm_core/tlm_2'
 /usr/bin/install -c -m 644  ../../../src/tlm_core/tlm_2/tlm_version.h '/home/israa/systemc/include/tlm_core/tlm_2'
 /usr/bin/mkdir -p '/home/israa/systemc/include/tlm_core/tlm_1/tlm_req_rsp/tlm_adapters'
 /usr/bin/install -c -m 644  ../../../src/tlm_core/tlm_1/tlm_req_rsp/tlm_adapters/tlm_adapters.h '/home/israa/systemc/include/tlm_core/tlm_1/tlm_req_rsp/tlm_adapters'
make[3]: Leaving directory '/home/israa/systemc-2.3.3/objdir/src/tlm_core'
make[2]: Leaving directory '/home/israa/systemc-2.3.3/objdir/src/tlm_core'
Making install in tlm_utils
make[2]: Entering directory '/home/israa/systemc-2.3.3/objdir/src/tlm_utils'
make[3]: Entering directory '/home/israa/systemc-2.3.3/objdir/src/tlm_utils'
make[3]: Nothing to be done for 'install-exec-am'.
 /usr/bin/mkdir -p '/home/israa/systemc/include/tlm_utils'
 /usr/bin/install -c -m 644  ../../../src/tlm_utils/convenience_socket_bases.h ../../../src/tlm_utils/instance_specific_extensions.h ../../../src/tlm_utils/instance_specific_extensions_int.h ../../../src/tlm_utils/multi_passthrough_initiator_socket.h ../../../src/tlm_utils/multi_passthrough_target_socket.h ../../../src/tlm_utils/multi_socket_bases.h ../../../src/tlm_utils/passthrough_target_socket.h ../../../src/tlm_utils/peq_with_cb_and_phase.h ../../../src/tlm_utils/peq_with_get.h ../../../src/tlm_utils/simple_initiator_socket.h ../../../src/tlm_utils/simple_target_socket.h ../../../src/tlm_utils/tlm_quantumkeeper.h '/home/israa/systemc/include/tlm_utils/.'
make[3]: Leaving directory '/home/israa/systemc-2.3.3/objdir/src/tlm_utils'
make[2]: Leaving directory '/home/israa/systemc-2.3.3/objdir/src/tlm_utils'
Making install in .
make[2]: Entering directory '/home/israa/systemc-2.3.3/objdir/src'
make[3]: Entering directory '/home/israa/systemc-2.3.3/objdir/src'
make[3]: Nothing to be done for 'install-exec-am'.
 /usr/bin/mkdir -p '/home/israa/systemc/lib-linux64'
 /bin/bash ../libtool   --mode=install /usr/bin/install -c   libsystemc.la '/home/israa/systemc/lib-linux64'
libtool: install: /usr/bin/install -c .libs/libsystemc-2.3.3.so /home/israa/systemc/lib-linux64/libsystemc-2.3.3.so
libtool: install: (cd /home/israa/systemc/lib-linux64 && { ln -s -f libsystemc-2.3.3.so libsystemc.so || { rm -f libsystemc.so && ln -s libsystemc-2.3.3.so libsystemc.so; }; })
libtool: install: /usr/bin/install -c .libs/libsystemc.lai /home/israa/systemc/lib-linux64/libsystemc.la
libtool: install: /usr/bin/install -c .libs/libsystemc.a /home/israa/systemc/lib-linux64/libsystemc.a
libtool: install: chmod 644 /home/israa/systemc/lib-linux64/libsystemc.a
libtool: install: ranlib /home/israa/systemc/lib-linux64/libsystemc.a
libtool: finish: PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/sbin" ldconfig -n /home/israa/systemc/lib-linux64
----------------------------------------------------------------------
Libraries have been installed in:
   /home/israa/systemc/lib-linux64

If you ever happen to want to link against installed libraries
in a given directory, LIBDIR, you must either use libtool, and
specify the full pathname of the library, or use the `-LLIBDIR'
flag during linking and do at least one of the following:
   - add LIBDIR to the `LD_LIBRARY_PATH' environment variable
     during execution
   - add LIBDIR to the `LD_RUN_PATH' environment variable
     during linking
   - use the `-Wl,-rpath -Wl,LIBDIR' linker flag
   - have your system administrator add LIBDIR to `/etc/ld.so.conf'

See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------
 /usr/bin/mkdir -p '/home/israa/systemc/include'
 /usr/bin/install -c -m 644  ../../src/systemc ../../src/systemc.h ../../src/tlm ../../src/tlm.h '/home/israa/systemc/include/.'
 /usr/bin/mkdir -p '/home/israa/systemc/lib-linux64/pkgconfig'
 /usr/bin/install -c -m 644 systemc.pc tlm.pc '/home/israa/systemc/lib-linux64/pkgconfig'
make[3]: Leaving directory '/home/israa/systemc-2.3.3/objdir/src'
make[2]: Leaving directory '/home/israa/systemc-2.3.3/objdir/src'
make[1]: Leaving directory '/home/israa/systemc-2.3.3/objdir/src'
Making install in examples
make[1]: Entering directory '/home/israa/systemc-2.3.3/objdir/examples'
Making install in sysc
make[2]: Entering directory '/home/israa/systemc-2.3.3/objdir/examples/sysc'
  GEN      copy-check-data
make[3]: Entering directory '/home/israa/systemc-2.3.3/objdir/examples/sysc'
make[3]: Nothing to be done for 'install-exec-am'.
 /usr/bin/mkdir -p '/home/israa/systemc/examples/sysc'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/sysc/2.1/scx_mutex_w_policy'
 /usr/bin/install -c -m 644  ../../../examples/sysc/2.1/scx_mutex_w_policy/scx_mutex_w_policy.cpp 2.1/scx_mutex_w_policy/golden.log ../../../examples/sysc/2.1/scx_mutex_w_policy/scx_mutex_w_policy.sln ../../../examples/sysc/2.1/scx_mutex_w_policy/scx_mutex_w_policy.vcxproj ../../../examples/sysc/2.1/scx_mutex_w_policy/CMakeLists.txt ../../../examples/sysc/2.1/scx_mutex_w_policy/Makefile '/home/israa/systemc/examples/sysc/2.1/scx_mutex_w_policy'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/sysc/risc_cpu'
 /usr/bin/install -c -m 644  ../../../examples/sysc/risc_cpu/bios.h ../../../examples/sysc/risc_cpu/dcache.h ../../../examples/sysc/risc_cpu/decode.h ../../../examples/sysc/risc_cpu/directive.h ../../../examples/sysc/risc_cpu/exec.h ../../../examples/sysc/risc_cpu/fetch.h ../../../examples/sysc/risc_cpu/floating.h ../../../examples/sysc/risc_cpu/icache.h ../../../examples/sysc/risc_cpu/mmxu.h ../../../examples/sysc/risc_cpu/paging.h ../../../examples/sysc/risc_cpu/pic.h ../../../examples/sysc/risc_cpu/bios.cpp ../../../examples/sysc/risc_cpu/dcache.cpp ../../../examples/sysc/risc_cpu/decode.cpp ../../../examples/sysc/risc_cpu/exec.cpp ../../../examples/sysc/risc_cpu/fetch.cpp ../../../examples/sysc/risc_cpu/floating.cpp ../../../examples/sysc/risc_cpu/icache.cpp ../../../examples/sysc/risc_cpu/main.cpp ../../../examples/sysc/risc_cpu/mmxu.cpp ../../../examples/sysc/risc_cpu/paging.cpp ../../../examples/sysc/risc_cpu/pic.cpp risc_cpu/bios.img risc_cpu/dcache.img risc_cpu/icache.img risc_cpu/printout.img risc_cpu/program.img risc_cpu/register.img ../../../examples/sysc/risc_cpu/assembler.pl ../../../examples/sysc/risc_cpu/abc.asm ../../../examples/sysc/risc_cpu/test.asm ../../../examples/sysc/risc_cpu/test1.asm ../../../examples/sysc/risc_cpu/README ../../../examples/sysc/risc_cpu/README_TYPESCRIPT ../../../examples/sysc/risc_cpu/risc_cpu.sln ../../../examples/sysc/risc_cpu/risc_cpu.vcxproj ../../../examples/sysc/risc_cpu/CMakeLists.txt ../../../examples/sysc/risc_cpu/Makefile '/home/israa/systemc/examples/sysc/risc_cpu'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/sysc/2.3/simple_async'
 /usr/bin/install -c -m 644  ../../../examples/sysc/2.3/simple_async/async_event.h ../../../examples/sysc/2.3/simple_async/main.cpp 2.3/simple_async/golden.log ../../../examples/sysc/2.3/simple_async/simple_async.sln ../../../examples/sysc/2.3/simple_async/simple_async.vcxproj ../../../examples/sysc/2.3/simple_async/CMakeLists.txt ../../../examples/sysc/2.3/simple_async/Makefile '/home/israa/systemc/examples/sysc/2.3/simple_async'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/sysc/2.1/reset_signal_is'
 /usr/bin/install -c -m 644  ../../../examples/sysc/2.1/reset_signal_is/reset_signal_is.cpp 2.1/reset_signal_is/golden.log ../../../examples/sysc/2.1/reset_signal_is/reset_signal_is.sln ../../../examples/sysc/2.1/reset_signal_is/reset_signal_is.vcxproj ../../../examples/sysc/2.1/reset_signal_is/CMakeLists.txt ../../../examples/sysc/2.1/reset_signal_is/Makefile '/home/israa/systemc/examples/sysc/2.1/reset_signal_is'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/sysc/fir'
 /usr/bin/install -c -m 644  ../../../examples/sysc/fir/display.h ../../../examples/sysc/fir/fir.h ../../../examples/sysc/fir/fir_const.h ../../../examples/sysc/fir/fir_data.h ../../../examples/sysc/fir/fir_fsm.h ../../../examples/sysc/fir/fir_top.h ../../../examples/sysc/fir/stimulus.h ../../../examples/sysc/fir/stimulus.cpp ../../../examples/sysc/fir/display.cpp ../../../examples/sysc/fir/fir.cpp ../../../examples/sysc/fir/main.cpp ../../../examples/sysc/fir/fir_fsm.cpp ../../../examples/sysc/fir/fir_data.cpp ../../../examples/sysc/fir/main_rtl.cpp ../../../examples/sysc/fir/log ../../../examples/sysc/fir/rtl_log ../../../examples/sysc/fir/fir.sln ../../../examples/sysc/fir/fir_common.vcxproj ../../../examples/sysc/fir/fir.vcxproj ../../../examples/sysc/fir/fir_rtl.vcxproj ../../../examples/sysc/fir/CMakeLists.txt ../../../examples/sysc/fir/Makefile ../../../examples/sysc/fir/README '/home/israa/systemc/examples/sysc/fir'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/sysc/2.1/scx_barrier'
 /usr/bin/install -c -m 644  ../../../examples/sysc/2.1/scx_barrier/scx_barrier.h ../../../examples/sysc/2.1/scx_barrier/main.cpp 2.1/scx_barrier/golden.log ../../../examples/sysc/2.1/scx_barrier/scx_barrier.sln ../../../examples/sysc/2.1/scx_barrier/scx_barrier.vcxproj ../../../examples/sysc/2.1/scx_barrier/CMakeLists.txt ../../../examples/sysc/2.1/scx_barrier/Makefile '/home/israa/systemc/examples/sysc/2.1/scx_barrier'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/sysc/rsa'
 /usr/bin/install -c -m 644  ../../../examples/sysc/rsa/rsa.cpp ../../../examples/sysc/rsa/rsa.sln ../../../examples/sysc/rsa/rsa.vcxproj ../../../examples/sysc/rsa/CMakeLists.txt ../../../examples/sysc/rsa/Makefile ../../../examples/sysc/rsa/README '/home/israa/systemc/examples/sysc/rsa'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/sysc/2.3/sc_ttd/../include'
 /usr/bin/install -c -m 644  ../../../examples/sysc/2.3/sc_ttd/../include/sc_ttd.h '/home/israa/systemc/examples/sysc/2.3/sc_ttd/../include'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/sysc/2.1/forkjoin'
 /usr/bin/install -c -m 644  ../../../examples/sysc/2.1/forkjoin/forkjoin.cpp 2.1/forkjoin/golden.log ../../../examples/sysc/2.1/forkjoin/forkjoin.sln ../../../examples/sysc/2.1/forkjoin/forkjoin.vcxproj ../../../examples/sysc/2.1/forkjoin/CMakeLists.txt ../../../examples/sysc/2.1/forkjoin/Makefile ../../../examples/sysc/2.1/forkjoin/README.txt '/home/israa/systemc/examples/sysc/2.1/forkjoin'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/sysc/fft/fft_flpt'
 /usr/bin/install -c -m 644  ../../../examples/sysc/fft/fft_flpt/fft.h ../../../examples/sysc/fft/fft_flpt/sink.h ../../../examples/sysc/fft/fft_flpt/source.h ../../../examples/sysc/fft/fft_flpt/fft.cpp ../../../examples/sysc/fft/fft_flpt/main.cpp ../../../examples/sysc/fft/fft_flpt/sink.cpp ../../../examples/sysc/fft/fft_flpt/source.cpp fft/fft_flpt/golden.log fft/fft_flpt/in_imag fft/fft_flpt/in_imag.1 fft/fft_flpt/in_imag.2 fft/fft_flpt/in_imag.3 fft/fft_flpt/in_imag.4 fft/fft_flpt/in_real fft/fft_flpt/in_real.1 fft/fft_flpt/in_real.2 fft/fft_flpt/in_real.3 fft/fft_flpt/in_real.4 fft/fft_flpt/out_imag.1.golden fft/fft_flpt/out_imag.2.golden fft/fft_flpt/out_imag.3.golden fft/fft_flpt/out_imag.4.golden fft/fft_flpt/out_real.1.golden fft/fft_flpt/out_real.2.golden fft/fft_flpt/out_real.3.golden fft/fft_flpt/out_real.4.golden ../../../examples/sysc/fft/fft_flpt/fft_flpt.sln ../../../examples/sysc/fft/fft_flpt/fft_flpt.vcxproj ../../../examples/sysc/fft/fft_flpt/CMakeLists.txt ../../../examples/sysc/fft/fft_flpt/Makefile '/home/israa/systemc/examples/sysc/fft/fft_flpt'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/sysc/fft'
 /usr/bin/install -c -m 644  ../../../examples/sysc/fft/README '/home/israa/systemc/examples/sysc/fft'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/sysc/pkt_switch'
 /usr/bin/install -c -m 644  ../../../examples/sysc/pkt_switch/fifo.h ../../../examples/sysc/pkt_switch/pkt.h ../../../examples/sysc/pkt_switch/receiver.h ../../../examples/sysc/pkt_switch/sender.h ../../../examples/sysc/pkt_switch/switch.h ../../../examples/sysc/pkt_switch/switch_clk.h ../../../examples/sysc/pkt_switch/switch_reg.h ../../../examples/sysc/pkt_switch/fifo.cpp ../../../examples/sysc/pkt_switch/main.cpp ../../../examples/sysc/pkt_switch/receiver.cpp ../../../examples/sysc/pkt_switch/sender.cpp ../../../examples/sysc/pkt_switch/switch.cpp ../../../examples/sysc/pkt_switch/switch_clk.cpp ../../../examples/sysc/pkt_switch/pkt_switch.sln ../../../examples/sysc/pkt_switch/pkt_switch.vcxproj ../../../examples/sysc/pkt_switch/CMakeLists.txt ../../../examples/sysc/pkt_switch/Makefile ../../../examples/sysc/pkt_switch/README '/home/israa/systemc/examples/sysc/pkt_switch'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/sysc/2.1/dpipe'
 /usr/bin/install -c -m 644  ../../../examples/sysc/2.1/dpipe/main.cpp 2.1/dpipe/golden.log ../../../examples/sysc/2.1/dpipe/dpipe.sln ../../../examples/sysc/2.1/dpipe/dpipe.vcxproj ../../../examples/sysc/2.1/dpipe/CMakeLists.txt ../../../examples/sysc/2.1/dpipe/Makefile '/home/israa/systemc/examples/sysc/2.1/dpipe'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/sysc/2.3/sc_rvd'
 /usr/bin/install -c -m 644  ../../../examples/sysc/2.3/sc_rvd/main.cpp 2.3/sc_rvd/golden.log ../../../examples/sysc/2.3/sc_rvd/sc_rvd.sln ../../../examples/sysc/2.3/sc_rvd/sc_rvd.vcxproj ../../../examples/sysc/2.3/sc_rvd/CMakeLists.txt ../../../examples/sysc/2.3/sc_rvd/Makefile '/home/israa/systemc/examples/sysc/2.3/sc_rvd'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/sysc/simple_bus'
 /usr/bin/install -c -m 644  ../../../examples/sysc/simple_bus/simple_bus.h ../../../examples/sysc/simple_bus/simple_bus_arbiter.h ../../../examples/sysc/simple_bus/simple_bus_arbiter_if.h ../../../examples/sysc/simple_bus/simple_bus_blocking_if.h ../../../examples/sysc/simple_bus/simple_bus_direct_if.h ../../../examples/sysc/simple_bus/simple_bus_fast_mem.h ../../../examples/sysc/simple_bus/simple_bus_master_blocking.h ../../../examples/sysc/simple_bus/simple_bus_master_direct.h ../../../examples/sysc/simple_bus/simple_bus_master_non_blocking.h ../../../examples/sysc/simple_bus/simple_bus_non_blocking_if.h ../../../examples/sysc/simple_bus/simple_bus_request.h ../../../examples/sysc/simple_bus/simple_bus_slave_if.h ../../../examples/sysc/simple_bus/simple_bus_slow_mem.h ../../../examples/sysc/simple_bus/simple_bus_test.h ../../../examples/sysc/simple_bus/simple_bus_types.h ../../../examples/sysc/simple_bus/simple_bus.cpp ../../../examples/sysc/simple_bus/simple_bus_arbiter.cpp ../../../examples/sysc/simple_bus/simple_bus_main.cpp ../../../examples/sysc/simple_bus/simple_bus_master_blocking.cpp ../../../examples/sysc/simple_bus/simple_bus_master_direct.cpp ../../../examples/sysc/simple_bus/simple_bus_master_non_blocking.cpp ../../../examples/sysc/simple_bus/simple_bus_types.cpp ../../../examples/sysc/simple_bus/simple_bus_tools.cpp simple_bus/golden.log ../../../examples/sysc/simple_bus/simple_bus.sln ../../../examples/sysc/simple_bus/simple_bus.vcxproj ../../../examples/sysc/simple_bus/CMakeLists.txt ../../../examples/sysc/simple_bus/Makefile ../../../examples/sysc/simple_bus/ChangeLog ../../../examples/sysc/simple_bus/README ../../../examples/sysc/simple_bus/SLIDES.pdf ../../../examples/sysc/simple_bus/LEGAL '/home/israa/systemc/examples/sysc/simple_bus'
 /usr/bin/install -c -m 644  ../../../examples/sysc/README.txt '/home/israa/systemc/examples/sysc/.'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/sysc/simple_perf'
 /usr/bin/install -c -m 644  ../../../examples/sysc/simple_perf/simple_perf.cpp ../../../examples/sysc/simple_perf/simple_perf.sln ../../../examples/sysc/simple_perf/simple_perf.vcxproj ../../../examples/sysc/simple_perf/CMakeLists.txt ../../../examples/sysc/simple_perf/Makefile '/home/israa/systemc/examples/sysc/simple_perf'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/sysc/fft/fft_fxpt'
 /usr/bin/install -c -m 644  ../../../examples/sysc/fft/fft_fxpt/fft.h ../../../examples/sysc/fft/fft_fxpt/sink.h ../../../examples/sysc/fft/fft_fxpt/source.h ../../../examples/sysc/fft/fft_fxpt/fft.cpp ../../../examples/sysc/fft/fft_fxpt/main.cpp ../../../examples/sysc/fft/fft_fxpt/sink.cpp ../../../examples/sysc/fft/fft_fxpt/source.cpp fft/fft_fxpt/golden.log fft/fft_fxpt/in_imag fft/fft_fxpt/in_imag.1 fft/fft_fxpt/in_imag.2 fft/fft_fxpt/in_imag.3 fft/fft_fxpt/in_imag.4 fft/fft_fxpt/in_real fft/fft_fxpt/in_real.1 fft/fft_fxpt/in_real.2 fft/fft_fxpt/in_real.3 fft/fft_fxpt/in_real.4 fft/fft_fxpt/out_imag.1.golden fft/fft_fxpt/out_imag.2.golden fft/fft_fxpt/out_imag.3.golden fft/fft_fxpt/out_imag.4.golden fft/fft_fxpt/out_real.1.golden fft/fft_fxpt/out_real.2.golden fft/fft_fxpt/out_real.3.golden fft/fft_fxpt/out_real.4.golden ../../../examples/sysc/fft/fft_fxpt/fft_fxpt.sln ../../../examples/sysc/fft/fft_fxpt/fft_fxpt.vcxproj ../../../examples/sysc/fft/fft_fxpt/CMakeLists.txt ../../../examples/sysc/fft/fft_fxpt/Makefile '/home/israa/systemc/examples/sysc/fft/fft_fxpt'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/sysc/pipe'
 /usr/bin/install -c -m 644  ../../../examples/sysc/pipe/display.h ../../../examples/sysc/pipe/numgen.h ../../../examples/sysc/pipe/stage1.h ../../../examples/sysc/pipe/stage2.h ../../../examples/sysc/pipe/stage3.h ../../../examples/sysc/pipe/display.cpp ../../../examples/sysc/pipe/main.cpp ../../../examples/sysc/pipe/numgen.cpp ../../../examples/sysc/pipe/stage1.cpp ../../../examples/sysc/pipe/stage2.cpp ../../../examples/sysc/pipe/stage3.cpp ../../../examples/sysc/pipe/pipe.sln ../../../examples/sysc/pipe/pipe.vcxproj ../../../examples/sysc/pipe/CMakeLists.txt ../../../examples/sysc/pipe/Makefile ../../../examples/sysc/pipe/README '/home/israa/systemc/examples/sysc/pipe'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/sysc/2.3/sc_ttd'
 /usr/bin/install -c -m 644  ../../../examples/sysc/2.3/sc_ttd/main.cpp 2.3/sc_ttd/golden.log ../../../examples/sysc/2.3/sc_ttd/sc_ttd.sln ../../../examples/sysc/2.3/sc_ttd/sc_ttd.vcxproj ../../../examples/sysc/2.3/sc_ttd/CMakeLists.txt ../../../examples/sysc/2.3/sc_ttd/Makefile '/home/israa/systemc/examples/sysc/2.3/sc_ttd'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/sysc/2.1/sc_export'
 /usr/bin/install -c -m 644  ../../../examples/sysc/2.1/sc_export/main.cpp 2.1/sc_export/golden.log ../../../examples/sysc/2.1/sc_export/sc_export.sln ../../../examples/sysc/2.1/sc_export/sc_export.vcxproj ../../../examples/sysc/2.1/sc_export/CMakeLists.txt ../../../examples/sysc/2.1/sc_export/Makefile ../../../examples/sysc/2.1/sc_export/README.txt '/home/israa/systemc/examples/sysc/2.1/sc_export'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/sysc/2.3/sc_rvd/../include'
 /usr/bin/install -c -m 644  ../../../examples/sysc/2.3/sc_rvd/../include/sc_rvd.h '/home/israa/systemc/examples/sysc/2.3/sc_rvd/../include'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/sysc/2.1/specialized_signals'
 /usr/bin/install -c -m 644  ../../../examples/sysc/2.1/specialized_signals/scx_signal_int.h ../../../examples/sysc/2.1/specialized_signals/scx_signal_uint.h ../../../examples/sysc/2.1/specialized_signals/scx_signal_signed.h ../../../examples/sysc/2.1/specialized_signals/scx_signal_unsigned.h ../../../examples/sysc/2.1/specialized_signals/main.cpp ../../../examples/sysc/2.1/specialized_signals/scx_signal_int.cpp ../../../examples/sysc/2.1/specialized_signals/scx_signal_uint.cpp ../../../examples/sysc/2.1/specialized_signals/scx_signal_signed.cpp ../../../examples/sysc/2.1/specialized_signals/scx_signal_unsigned.cpp 2.1/specialized_signals/golden.log ../../../examples/sysc/2.1/specialized_signals/specialized_signals.sln ../../../examples/sysc/2.1/specialized_signals/specialized_signals.vcxproj ../../../examples/sysc/2.1/specialized_signals/CMakeLists.txt ../../../examples/sysc/2.1/specialized_signals/Makefile '/home/israa/systemc/examples/sysc/2.1/specialized_signals'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/sysc/2.1/sc_report'
 /usr/bin/install -c -m 644  ../../../examples/sysc/2.1/sc_report/main.cpp 2.1/sc_report/golden.log ../../../examples/sysc/2.1/sc_report/sc_report.sln ../../../examples/sysc/2.1/sc_report/sc_report.vcxproj ../../../examples/sysc/2.1/sc_report/CMakeLists.txt ../../../examples/sysc/2.1/sc_report/Makefile ../../../examples/sysc/2.1/sc_report/README.txt '/home/israa/systemc/examples/sysc/2.1/sc_report'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/sysc/simple_fifo'
 /usr/bin/install -c -m 644  ../../../examples/sysc/simple_fifo/simple_fifo.cpp simple_fifo/golden.log ../../../examples/sysc/simple_fifo/simple_fifo.sln ../../../examples/sysc/simple_fifo/simple_fifo.vcxproj ../../../examples/sysc/simple_fifo/CMakeLists.txt ../../../examples/sysc/simple_fifo/Makefile '/home/israa/systemc/examples/sysc/simple_fifo'
make[3]: Leaving directory '/home/israa/systemc-2.3.3/objdir/examples/sysc'
make[2]: Leaving directory '/home/israa/systemc-2.3.3/objdir/examples/sysc'
Making install in tlm
make[2]: Entering directory '/home/israa/systemc-2.3.3/objdir/examples/tlm'
Making install in common
make[3]: Entering directory '/home/israa/systemc-2.3.3/objdir/examples/tlm/common'
  GEN      copy-check-data
make[4]: Entering directory '/home/israa/systemc-2.3.3/objdir/examples/tlm/common'
make[4]: Nothing to be done for 'install-exec-am'.
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/common'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/common/include/models'
 /usr/bin/install -c -m 644  ../../../../examples/tlm/common/include/models/README.txt ../../../../examples/tlm/common/include/models/SimpleBusAT.h ../../../../examples/tlm/common/include/models/SimpleBusLT.h '/home/israa/systemc/examples/tlm/common/include/models'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/common/src'
 /usr/bin/install -c -m 644  ../../../../examples/tlm/common/src/at_initiator_annotated.cpp ../../../../examples/tlm/common/src/at_initiator_explicit.cpp ../../../../examples/tlm/common/src/at_target_1_phase.cpp ../../../../examples/tlm/common/src/at_target_1_phase_dmi.cpp ../../../../examples/tlm/common/src/at_target_2_phase.cpp ../../../../examples/tlm/common/src/at_target_4_phase.cpp ../../../../examples/tlm/common/src/dmi_memory.cpp ../../../../examples/tlm/common/src/extension_initiator_id.cpp ../../../../examples/tlm/common/src/lt_dmi_initiator.cpp ../../../../examples/tlm/common/src/lt_dmi_target.cpp ../../../../examples/tlm/common/src/lt_initiator.cpp ../../../../examples/tlm/common/src/lt_synch_target.cpp ../../../../examples/tlm/common/src/lt_target.cpp ../../../../examples/tlm/common/src/lt_td_initiator.cpp ../../../../examples/tlm/common/src/memory.cpp ../../../../examples/tlm/common/src/report.cpp ../../../../examples/tlm/common/src/select_initiator.cpp ../../../../examples/tlm/common/src/traffic_generator.cpp '/home/israa/systemc/examples/tlm/common/src'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/common/include'
 /usr/bin/install -c -m 644  ../../../../examples/tlm/common/include/at_initiator_annotated.h ../../../../examples/tlm/common/include/at_initiator_explicit.h ../../../../examples/tlm/common/include/at_target_1_phase_dmi.h ../../../../examples/tlm/common/include/at_target_1_phase.h ../../../../examples/tlm/common/include/at_target_2_phase.h ../../../../examples/tlm/common/include/at_target_4_phase.h ../../../../examples/tlm/common/include/dmi_memory.h ../../../../examples/tlm/common/include/extension_initiator_id.h ../../../../examples/tlm/common/include/lt_dmi_initiator.h ../../../../examples/tlm/common/include/lt_dmi_target.h ../../../../examples/tlm/common/include/lt_initiator.h ../../../../examples/tlm/common/include/lt_synch_target.h ../../../../examples/tlm/common/include/lt_target.h ../../../../examples/tlm/common/include/lt_td_initiator.h ../../../../examples/tlm/common/include/memory.h ../../../../examples/tlm/common/include/reporting.h ../../../../examples/tlm/common/include/select_initiator.h ../../../../examples/tlm/common/include/traffic_generator.h '/home/israa/systemc/examples/tlm/common/include'
make[4]: Leaving directory '/home/israa/systemc-2.3.3/objdir/examples/tlm/common'
make[3]: Leaving directory '/home/israa/systemc-2.3.3/objdir/examples/tlm/common'
Making install in .
make[3]: Entering directory '/home/israa/systemc-2.3.3/objdir/examples/tlm'
  GEN      copy-check-data
make[4]: Entering directory '/home/israa/systemc-2.3.3/objdir/examples/tlm'
make[4]: Nothing to be done for 'install-exec-am'.
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/lt_dmi/docs'
 /usr/bin/install -c -m 644  ../../../examples/tlm/lt_dmi/docs/lt_dmi_example.pdf ../../../examples/tlm/lt_dmi/docs/lt_dmi_example.ppt '/home/israa/systemc/examples/tlm/lt_dmi/docs'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/at_4_phase/results'
 /usr/bin/install -c -m 644  at_4_phase/results/expected.log '/home/israa/systemc/examples/tlm/at_4_phase/results'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/at_ooo/build-unix'
 /usr/bin/install -c -m 644  ../../../examples/tlm/at_ooo/build-unix/Makefile '/home/israa/systemc/examples/tlm/at_ooo/build-unix'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/lt_temporal_decouple/include'
 /usr/bin/install -c -m 644  ../../../examples/tlm/lt_temporal_decouple/include/initiator_top.h ../../../examples/tlm/lt_temporal_decouple/include/lt_temporal_decouple_top.h ../../../examples/tlm/lt_temporal_decouple/include/td_initiator_top.h '/home/israa/systemc/examples/tlm/lt_temporal_decouple/include'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/lt_dmi/results'
 /usr/bin/install -c -m 644  lt_dmi/results/expected.log '/home/israa/systemc/examples/tlm/lt_dmi/results'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/at_extension_optional/results'
 /usr/bin/install -c -m 644  at_extension_optional/results/expected.log '/home/israa/systemc/examples/tlm/at_extension_optional/results'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/at_1_phase/docs'
 /usr/bin/install -c -m 644  ../../../examples/tlm/at_1_phase/docs/at_1_phase_example.pdf ../../../examples/tlm/at_1_phase/docs/at_1_phase_example.ppt '/home/israa/systemc/examples/tlm/at_1_phase/docs'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/lt_temporal_decouple/build-msvc'
 /usr/bin/install -c -m 644  ../../../examples/tlm/lt_temporal_decouple/build-msvc/Makefile ../../../examples/tlm/lt_temporal_decouple/build-msvc/lt_temporal_decouple.sln ../../../examples/tlm/lt_temporal_decouple/build-msvc/lt_temporal_decouple.vcxproj '/home/israa/systemc/examples/tlm/lt_temporal_decouple/build-msvc'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/lt_mixed_endian/build-unix'
 /usr/bin/install -c -m 644  ../../../examples/tlm/lt_mixed_endian/build-unix/Makefile '/home/israa/systemc/examples/tlm/lt_mixed_endian/build-unix'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/lt_extension_mandatory'
 /usr/bin/install -c -m 644  ../../../examples/tlm/lt_extension_mandatory/CMakeLists.txt '/home/israa/systemc/examples/tlm/lt_extension_mandatory'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/lt/build-unix'
 /usr/bin/install -c -m 644  ../../../examples/tlm/lt/build-unix/Makefile '/home/israa/systemc/examples/tlm/lt/build-unix'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/lt_dmi/build-unix'
 /usr/bin/install -c -m 644  ../../../examples/tlm/lt_dmi/build-unix/Makefile '/home/israa/systemc/examples/tlm/lt_dmi/build-unix'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/at_mixed_targets/src'
 /usr/bin/install -c -m 644  ../../../examples/tlm/at_mixed_targets/src/at_mixed_targets.cpp ../../../examples/tlm/at_mixed_targets/src/at_mixed_targets_top.cpp ../../../examples/tlm/at_mixed_targets/src/initiator_top.cpp '/home/israa/systemc/examples/tlm/at_mixed_targets/src'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/at_2_phase/docs'
 /usr/bin/install -c -m 644  ../../../examples/tlm/at_2_phase/docs/at_2_phase_example.pdf ../../../examples/tlm/at_2_phase/docs/at_2_phase_example.ppt '/home/israa/systemc/examples/tlm/at_2_phase/docs'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/at_1_phase/build-unix'
 /usr/bin/install -c -m 644  ../../../examples/tlm/at_1_phase/build-unix/Makefile '/home/israa/systemc/examples/tlm/at_1_phase/build-unix'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/lt_extension_mandatory/src'
 /usr/bin/install -c -m 644  ../../../examples/tlm/lt_extension_mandatory/src/lt_extension_mandatory.cpp ../../../examples/tlm/lt_extension_mandatory/src/lt_extension_mandatory_top.cpp ../../../examples/tlm/lt_extension_mandatory/src/lt_initiator_extension_mandatory.cpp ../../../examples/tlm/lt_extension_mandatory/src/lt_target_extension_mandatory.cpp '/home/israa/systemc/examples/tlm/lt_extension_mandatory/src'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/at_2_phase/build-msvc'
 /usr/bin/install -c -m 644  ../../../examples/tlm/at_2_phase/build-msvc/Makefile ../../../examples/tlm/at_2_phase/build-msvc/at_2_phase.sln ../../../examples/tlm/at_2_phase/build-msvc/at_2_phase.vcxproj '/home/israa/systemc/examples/tlm/at_2_phase/build-msvc'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/lt_extension_mandatory/docs'
 /usr/bin/install -c -m 644  ../../../examples/tlm/lt_extension_mandatory/docs/lt_extension_mandatory_example.pdf ../../../examples/tlm/lt_extension_mandatory/docs/lt_extension_mandatory_example.ppt '/home/israa/systemc/examples/tlm/lt_extension_mandatory/docs'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/lt_temporal_decouple/docs'
 /usr/bin/install -c -m 644  ../../../examples/tlm/lt_temporal_decouple/docs/lt_temporal_decouple_example.pdf ../../../examples/tlm/lt_temporal_decouple/docs/lt_temporal_decouple_example.ppt '/home/israa/systemc/examples/tlm/lt_temporal_decouple/docs'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/at_4_phase/include'
 /usr/bin/install -c -m 644  ../../../examples/tlm/at_4_phase/include/at_4_phase_top.h ../../../examples/tlm/at_4_phase/include/initiator_top.h '/home/israa/systemc/examples/tlm/at_4_phase/include'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/at_mixed_targets'
 /usr/bin/install -c -m 644  ../../../examples/tlm/at_mixed_targets/CMakeLists.txt '/home/israa/systemc/examples/tlm/at_mixed_targets'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/lt_temporal_decouple/build-unix'
 /usr/bin/install -c -m 644  ../../../examples/tlm/lt_temporal_decouple/build-unix/Makefile '/home/israa/systemc/examples/tlm/lt_temporal_decouple/build-unix'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/lt_mixed_endian/results'
 /usr/bin/install -c -m 644  lt_mixed_endian/results/expected.log lt_mixed_endian/results/input.txt '/home/israa/systemc/examples/tlm/lt_mixed_endian/results'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/lt/results'
 /usr/bin/install -c -m 644  lt/results/expected.log '/home/israa/systemc/examples/tlm/lt/results'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/at_2_phase'
 /usr/bin/install -c -m 644  ../../../examples/tlm/at_2_phase/CMakeLists.txt '/home/israa/systemc/examples/tlm/at_2_phase'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/lt_extension_mandatory/results'
 /usr/bin/install -c -m 644  lt_extension_mandatory/results/expected.log '/home/israa/systemc/examples/tlm/lt_extension_mandatory/results'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/at_extension_optional'
 /usr/bin/install -c -m 644  ../../../examples/tlm/at_extension_optional/CMakeLists.txt '/home/israa/systemc/examples/tlm/at_extension_optional'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/lt_extension_mandatory/build-msvc'
 /usr/bin/install -c -m 644  ../../../examples/tlm/lt_extension_mandatory/build-msvc/Makefile ../../../examples/tlm/lt_extension_mandatory/build-msvc/lt_extension_mandatory.sln ../../../examples/tlm/lt_extension_mandatory/build-msvc/lt_extension_mandatory.vcxproj '/home/israa/systemc/examples/tlm/lt_extension_mandatory/build-msvc'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/lt_dmi'
 /usr/bin/install -c -m 644  ../../../examples/tlm/lt_dmi/README ../../../examples/tlm/lt_dmi/CMakeLists.txt '/home/israa/systemc/examples/tlm/lt_dmi'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/lt_extension_mandatory/build-unix'
 /usr/bin/install -c -m 644  ../../../examples/tlm/lt_extension_mandatory/build-unix/Makefile '/home/israa/systemc/examples/tlm/lt_extension_mandatory/build-unix'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/at_ooo/build-msvc'
 /usr/bin/install -c -m 644  ../../../examples/tlm/at_ooo/build-msvc/Makefile ../../../examples/tlm/at_ooo/build-msvc/at_ooo.sln ../../../examples/tlm/at_ooo/build-msvc/at_ooo.vcxproj '/home/israa/systemc/examples/tlm/at_ooo/build-msvc'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/at_mixed_targets/build-msvc'
 /usr/bin/install -c -m 644  ../../../examples/tlm/at_mixed_targets/build-msvc/Makefile ../../../examples/tlm/at_mixed_targets/build-msvc/at_mixed_targets.sln ../../../examples/tlm/at_mixed_targets/build-msvc/at_mixed_targets.vcxproj '/home/israa/systemc/examples/tlm/at_mixed_targets/build-msvc'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/at_4_phase/src'
 /usr/bin/install -c -m 644  ../../../examples/tlm/at_4_phase/src/at_4_phase.cpp ../../../examples/tlm/at_4_phase/src/at_4_phase_top.cpp ../../../examples/tlm/at_4_phase/src/initiator_top.cpp '/home/israa/systemc/examples/tlm/at_4_phase/src'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/at_4_phase'
 /usr/bin/install -c -m 644  ../../../examples/tlm/at_4_phase/CMakeLists.txt '/home/israa/systemc/examples/tlm/at_4_phase'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/at_1_phase/include'
 /usr/bin/install -c -m 644  ../../../examples/tlm/at_1_phase/include/at_1_phase_top.h ../../../examples/tlm/at_1_phase/include/initiator_top.h '/home/israa/systemc/examples/tlm/at_1_phase/include'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/at_extension_optional/include'
 /usr/bin/install -c -m 644  ../../../examples/tlm/at_extension_optional/include/at_extension_optional_top.h ../../../examples/tlm/at_extension_optional/include/initiator_top.h '/home/israa/systemc/examples/tlm/at_extension_optional/include'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/at_4_phase/build-msvc'
 /usr/bin/install -c -m 644  ../../../examples/tlm/at_4_phase/build-msvc/Makefile ../../../examples/tlm/at_4_phase/build-msvc/at_4_phase.sln ../../../examples/tlm/at_4_phase/build-msvc/at_4_phase.vcxproj '/home/israa/systemc/examples/tlm/at_4_phase/build-msvc'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/at_1_phase'
 /usr/bin/install -c -m 644  ../../../examples/tlm/at_1_phase/CMakeLists.txt '/home/israa/systemc/examples/tlm/at_1_phase'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/at_extension_optional/src'
 /usr/bin/install -c -m 644  ../../../examples/tlm/at_extension_optional/src/at_extension_optional.cpp ../../../examples/tlm/at_extension_optional/src/at_extension_optional_top.cpp ../../../examples/tlm/at_extension_optional/src/initiator_top.cpp '/home/israa/systemc/examples/tlm/at_extension_optional/src'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/at_extension_optional/docs'
 /usr/bin/install -c -m 644  ../../../examples/tlm/at_extension_optional/docs/at_extension_optional_example.pdf ../../../examples/tlm/at_extension_optional/docs/at_extension_optional_example.ppt '/home/israa/systemc/examples/tlm/at_extension_optional/docs'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/at_1_phase/build-msvc'
 /usr/bin/install -c -m 644  ../../../examples/tlm/at_1_phase/build-msvc/Makefile ../../../examples/tlm/at_1_phase/build-msvc/at_1_phase.sln ../../../examples/tlm/at_1_phase/build-msvc/at_1_phase.vcxproj '/home/israa/systemc/examples/tlm/at_1_phase/build-msvc'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/at_1_phase/results'
 /usr/bin/install -c -m 644  at_1_phase/results/expected.log '/home/israa/systemc/examples/tlm/at_1_phase/results'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/lt_temporal_decouple'
 /usr/bin/install -c -m 644  ../../../examples/tlm/lt_temporal_decouple/README ../../../examples/tlm/lt_temporal_decouple/CMakeLists.txt '/home/israa/systemc/examples/tlm/lt_temporal_decouple'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/at_2_phase/src'
 /usr/bin/install -c -m 644  ../../../examples/tlm/at_2_phase/src/at_2_phase.cpp ../../../examples/tlm/at_2_phase/src/at_2_phase_top.cpp ../../../examples/tlm/at_2_phase/src/initiator_top.cpp '/home/israa/systemc/examples/tlm/at_2_phase/src'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/lt_mixed_endian/build-msvc'
 /usr/bin/install -c -m 644  ../../../examples/tlm/lt_mixed_endian/build-msvc/Makefile ../../../examples/tlm/lt_mixed_endian/build-msvc/README.txt ../../../examples/tlm/lt_mixed_endian/build-msvc/lt_mixed_endian.sln ../../../examples/tlm/lt_mixed_endian/build-msvc/lt_mixed_endian.vcxproj '/home/israa/systemc/examples/tlm/lt_mixed_endian/build-msvc'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/lt_mixed_endian/include'
 /usr/bin/install -c -m 644  ../../../examples/tlm/lt_mixed_endian/include/initiator_top.h ../../../examples/tlm/lt_mixed_endian/include/lt_top.h ../../../examples/tlm/lt_mixed_endian/include/me_traffic_generator.h '/home/israa/systemc/examples/tlm/lt_mixed_endian/include'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/lt/build-msvc'
 /usr/bin/install -c -m 644  ../../../examples/tlm/lt/build-msvc/Makefile ../../../examples/tlm/lt/build-msvc/lt.sln ../../../examples/tlm/lt/build-msvc/lt.vcxproj '/home/israa/systemc/examples/tlm/lt/build-msvc'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/lt/include'
 /usr/bin/install -c -m 644  ../../../examples/tlm/lt/include/initiator_top.h ../../../examples/tlm/lt/include/lt_top.h '/home/israa/systemc/examples/tlm/lt/include'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/lt_temporal_decouple/results'
 /usr/bin/install -c -m 644  lt_temporal_decouple/results/expected.log '/home/israa/systemc/examples/tlm/lt_temporal_decouple/results'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/at_extension_optional/build-msvc'
 /usr/bin/install -c -m 644  ../../../examples/tlm/at_extension_optional/build-msvc/Makefile ../../../examples/tlm/at_extension_optional/build-msvc/at_extension_optional.sln ../../../examples/tlm/at_extension_optional/build-msvc/at_extension_optional.vcxproj '/home/israa/systemc/examples/tlm/at_extension_optional/build-msvc'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/at_extension_optional/build-unix'
 /usr/bin/install -c -m 644  ../../../examples/tlm/at_extension_optional/build-unix/Makefile '/home/israa/systemc/examples/tlm/at_extension_optional/build-unix'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/at_mixed_targets/build-unix'
 /usr/bin/install -c -m 644  ../../../examples/tlm/at_mixed_targets/build-unix/Makefile '/home/israa/systemc/examples/tlm/at_mixed_targets/build-unix'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/lt_mixed_endian/src'
 /usr/bin/install -c -m 644  ../../../examples/tlm/lt_mixed_endian/src/initiator_top.cpp ../../../examples/tlm/lt_mixed_endian/src/lt.cpp ../../../examples/tlm/lt_mixed_endian/src/lt_top.cpp ../../../examples/tlm/lt_mixed_endian/src/me_traffic_generator.cpp '/home/israa/systemc/examples/tlm/lt_mixed_endian/src'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/lt_extension_mandatory/include'
 /usr/bin/install -c -m 644  ../../../examples/tlm/lt_extension_mandatory/include/lt_extension_mandatory_top.h ../../../examples/tlm/lt_extension_mandatory/include/lt_initiator_extension_mandatory.h ../../../examples/tlm/lt_extension_mandatory/include/lt_target_extension_mandatory.h '/home/israa/systemc/examples/tlm/lt_extension_mandatory/include'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/lt/src'
 /usr/bin/install -c -m 644  ../../../examples/tlm/lt/src/initiator_top.cpp ../../../examples/tlm/lt/src/lt.cpp ../../../examples/tlm/lt/src/lt_top.cpp '/home/israa/systemc/examples/tlm/lt/src'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/lt_mixed_endian'
 /usr/bin/install -c -m 644  ../../../examples/tlm/lt_mixed_endian/README ../../../examples/tlm/lt_mixed_endian/CMakeLists.txt '/home/israa/systemc/examples/tlm/lt_mixed_endian'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/lt'
 /usr/bin/install -c -m 644  ../../../examples/tlm/lt/README ../../../examples/tlm/lt/CMakeLists.txt '/home/israa/systemc/examples/tlm/lt'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/at_ooo/docs'
 /usr/bin/install -c -m 644  ../../../examples/tlm/at_ooo/docs/at_ooo_example.pdf ../../../examples/tlm/at_ooo/docs/at_ooo_example.ppt '/home/israa/systemc/examples/tlm/at_ooo/docs'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/at_2_phase/include'
 /usr/bin/install -c -m 644  ../../../examples/tlm/at_2_phase/include/at_2_phase_top.h ../../../examples/tlm/at_2_phase/include/initiator_top.h '/home/israa/systemc/examples/tlm/at_2_phase/include'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/at_2_phase/build-unix'
 /usr/bin/install -c -m 644  ../../../examples/tlm/at_2_phase/build-unix/Makefile '/home/israa/systemc/examples/tlm/at_2_phase/build-unix'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/at_mixed_targets/results'
 /usr/bin/install -c -m 644  at_mixed_targets/results/expected.log '/home/israa/systemc/examples/tlm/at_mixed_targets/results'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/lt_mixed_endian/docs'
 /usr/bin/install -c -m 644  ../../../examples/tlm/lt_mixed_endian/docs/lt_mixed_endian_example.pdf ../../../examples/tlm/lt_mixed_endian/docs/lt_mixed_endian_example.ppt '/home/israa/systemc/examples/tlm/lt_mixed_endian/docs'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/lt/docs'
 /usr/bin/install -c -m 644  ../../../examples/tlm/lt/docs/lt_example.pdf ../../../examples/tlm/lt/docs/lt_example.ppt '/home/israa/systemc/examples/tlm/lt/docs'
 /usr/bin/install -c -m 644  ../../../examples/tlm/README.txt '/home/israa/systemc/examples/tlm/.'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/at_ooo/include'
 /usr/bin/install -c -m 644  ../../../examples/tlm/at_ooo/include/at_ooo_top.h ../../../examples/tlm/at_ooo/include/at_target_ooo_2_phase.h ../../../examples/tlm/at_ooo/include/initiator_top.h '/home/israa/systemc/examples/tlm/at_ooo/include'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/at_4_phase/docs'
 /usr/bin/install -c -m 644  ../../../examples/tlm/at_4_phase/docs/at_4_phase_example.pdf ../../../examples/tlm/at_4_phase/docs/at_4_phase_example.ppt '/home/israa/systemc/examples/tlm/at_4_phase/docs'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/at_ooo'
 /usr/bin/install -c -m 644  ../../../examples/tlm/at_ooo/CMakeLists.txt '/home/israa/systemc/examples/tlm/at_ooo'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/at_mixed_targets/docs'
 /usr/bin/install -c -m 644  ../../../examples/tlm/at_mixed_targets/docs/at_mixed_targets_example.pdf ../../../examples/tlm/at_mixed_targets/docs/at_mixed_targets_example.ppt '/home/israa/systemc/examples/tlm/at_mixed_targets/docs'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/at_1_phase/src'
 /usr/bin/install -c -m 644  ../../../examples/tlm/at_1_phase/src/at_1_phase.cpp ../../../examples/tlm/at_1_phase/src/at_1_phase_top.cpp ../../../examples/tlm/at_1_phase/src/initiator_top.cpp '/home/israa/systemc/examples/tlm/at_1_phase/src'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/lt_dmi/include'
 /usr/bin/install -c -m 644  ../../../examples/tlm/lt_dmi/include/initiator_top.h ../../../examples/tlm/lt_dmi/include/lt_dmi_top.h '/home/israa/systemc/examples/tlm/lt_dmi/include'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/lt_dmi/src'
 /usr/bin/install -c -m 644  ../../../examples/tlm/lt_dmi/src/initiator_top.cpp ../../../examples/tlm/lt_dmi/src/lt_dmi.cpp ../../../examples/tlm/lt_dmi/src/lt_dmi_top.cpp '/home/israa/systemc/examples/tlm/lt_dmi/src'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/at_ooo/results'
 /usr/bin/install -c -m 644  at_ooo/results/expected.log '/home/israa/systemc/examples/tlm/at_ooo/results'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/at_mixed_targets/include'
 /usr/bin/install -c -m 644  ../../../examples/tlm/at_mixed_targets/include/at_mixed_targets_top.h ../../../examples/tlm/at_mixed_targets/include/initiator_top.h '/home/israa/systemc/examples/tlm/at_mixed_targets/include'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/lt_temporal_decouple/src'
 /usr/bin/install -c -m 644  ../../../examples/tlm/lt_temporal_decouple/src/initiator_top.cpp ../../../examples/tlm/lt_temporal_decouple/src/lt_temporal_decouple.cpp ../../../examples/tlm/lt_temporal_decouple/src/lt_temporal_decouple_top.cpp ../../../examples/tlm/lt_temporal_decouple/src/td_initiator_top.cpp '/home/israa/systemc/examples/tlm/lt_temporal_decouple/src'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/at_2_phase/results'
 /usr/bin/install -c -m 644  at_2_phase/results/expected.log '/home/israa/systemc/examples/tlm/at_2_phase/results'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/lt_dmi/build-msvc'
 /usr/bin/install -c -m 644  ../../../examples/tlm/lt_dmi/build-msvc/Makefile ../../../examples/tlm/lt_dmi/build-msvc/lt_dmi.sln ../../../examples/tlm/lt_dmi/build-msvc/lt_dmi.vcxproj '/home/israa/systemc/examples/tlm/lt_dmi/build-msvc'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/at_ooo/src'
 /usr/bin/install -c -m 644  ../../../examples/tlm/at_ooo/src/at_ooo.cpp ../../../examples/tlm/at_ooo/src/at_ooo_top.cpp ../../../examples/tlm/at_ooo/src/at_target_ooo_2_phase.cpp ../../../examples/tlm/at_ooo/src/initiator_top.cpp '/home/israa/systemc/examples/tlm/at_ooo/src'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/tlm/at_4_phase/build-unix'
 /usr/bin/install -c -m 644  ../../../examples/tlm/at_4_phase/build-unix/Makefile '/home/israa/systemc/examples/tlm/at_4_phase/build-unix'
make[4]: Leaving directory '/home/israa/systemc-2.3.3/objdir/examples/tlm'
make[3]: Leaving directory '/home/israa/systemc-2.3.3/objdir/examples/tlm'
make[2]: Leaving directory '/home/israa/systemc-2.3.3/objdir/examples/tlm'
make[2]: Entering directory '/home/israa/systemc-2.3.3/objdir/examples'
  GEN      copy-check-data
make[3]: Entering directory '/home/israa/systemc-2.3.3/objdir/examples'
make[3]: Nothing to be done for 'install-exec-am'.
 /usr/bin/mkdir -p '/home/israa/systemc/examples'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/build-msvc'
 /usr/bin/install -c -m 644  ../../examples/build-msvc/Makefile ../../examples/build-msvc/Makefile.config ../../examples/build-msvc/Makefile.rules ../../examples/build-msvc/READMEcommandlinemsvc.txt ../../examples/build-msvc/SystemC_examples.props ../../examples/build-msvc/SystemC_examples.sln ../../examples/build-msvc/openhere.bat ../../examples/build-msvc/tlm_examples.props ../../examples/build-msvc/tlm_examples.sln ../../examples/build-msvc/vsvars.bat '/home/israa/systemc/examples/build-msvc'
 /usr/bin/mkdir -p '/home/israa/systemc/examples/build-unix'
 /usr/bin/install -c -m 644  ../../examples/build-unix/Makefile ../../examples/build-unix/Makefile.config ../../examples/build-unix/Makefile.rules '/home/israa/systemc/examples/build-unix'
make[3]: Leaving directory '/home/israa/systemc-2.3.3/objdir/examples'
make[2]: Leaving directory '/home/israa/systemc-2.3.3/objdir/examples'
make[1]: Leaving directory '/home/israa/systemc-2.3.3/objdir/examples'
make[1]: Entering directory '/home/israa/systemc-2.3.3/objdir'
make[2]: Entering directory '/home/israa/systemc-2.3.3/objdir'
make[2]: Nothing to be done for 'install-exec-am'.
 /usr/bin/mkdir -p '/home/israa/systemc'
 /usr/bin/install -c -m 644 ../AUTHORS ../NOTICE ../ChangeLog ../INSTALL ../LICENSE ../NEWS ../README ../RELEASENOTES ../cmake/INSTALL_USING_CMAKE '/home/israa/systemc'
make[2]: Leaving directory '/home/israa/systemc-2.3.3/objdir'
make[1]: Leaving directory '/home/israa/systemc-2.3.3/objdir'

 

than I changed the env. variable as follows:

>export SYSTEMC_HOME=/home/israa/systemc
> echo $SYSTEMC_HOME
/home/israa/systemc
>export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$SYSTEMC_HOME/lib-linux64
>echo $LD_LIBRARY_PATH
:/home/israa/systemc-2.3.3/lib-linux64:/home/israa/systemc-2.3.3/lib-linux64:/home/israa/systemc/lib-linux64

Yet still get the same error?

 

regards,

 

Israa
 

Link to comment
Share on other sites

@AmeyaVS Good Morning,

total 84
drwxr-xr-x  20 root root  4096 آب            8 04:13 .
drwxr-xr-x  20 root root  4096 آب            8 04:13 ..
lrwxrwxrwx   1 root root     7 آب            8 04:12 bin -> usr/bin
drwxr-xr-x   4 root root  4096 تشرين الأول  26 19:55 boot
drwxr-xr-x   2 root root  4096 آب            8 04:13 cdrom
drwxr-xr-x  20 root root  4720 تشرين الثاني 27 10:31 dev
drwxr-xr-x 130 root root 12288 تشرين الأول  26 19:55 etc
drwxr-xr-x   4 root root  4096 آب            8 04:13 home
lrwxrwxrwx   1 root root     7 آب            8 04:12 lib -> usr/lib
lrwxrwxrwx   1 root root     9 آب            8 04:12 lib32 -> usr/lib32
lrwxrwxrwx   1 root root     9 آب            8 04:12 lib64 -> usr/lib64
lrwxrwxrwx   1 root root    10 آب            8 04:12 libx32 -> usr/libx32
drwx------   2 root root 16384 آب            8 04:11 lost+found
drwxr-xr-x   3 root root  4096 آب            8 07:21 media
drwxr-xr-x   2 root root  4096 نيسان        23  2020 mnt
drwxr-xr-x   3 root root  4096 تشرين الأول  20 15:27 opt
dr-xr-xr-x 287 root root     0 تشرين الثاني 27  2020 proc
drwx------   4 root root  4096 تشرين الثاني 27 10:31 root
drwxr-xr-x  34 root root   880 تشرين الثاني 27  2020 run
lrwxrwxrwx   1 root root     8 آب            8 04:12 sbin -> usr/sbin
drwxr-xr-x   8 root root  4096 آب            8 07:19 snap
drwxr-xr-x   2 root root  4096 نيسان        23  2020 srv
dr-xr-xr-x  13 root root     0 تشرين الثاني 27  2020 sys
drwxrwxrwt  23 root root  4096 تشرين الثاني 27 10:59 tmp
drwxr-xr-x  14 root root  4096 نيسان        23  2020 usr
drwxr-xr-x  14 root root  4096 نيسان        23  2020 var
 

Link to comment
Share on other sites

Hello @Issraa,

Have you shared the system root path list?(i.e. ls -al /)

I want the content of the folder where the SystemC library was configured to be installed.

ls -al /home/israa/systemc

The system root will not really help.

I would recommend you go through some UNIX/Linux system tutorial about the various shells and their configurations along with understanding various environment vairables.

Hope this helps.

Regards,

Ameya Vikram Singh

 

Link to comment
Share on other sites

Dear @AmeyaVS,

Thank you for your response!

I run the command :

ls -al /home/israa/systemc

and I got the following:

total 148
drwxrwxr-x  6 israa israa  4096 تشرين الثاني 23 11:32 .
drwxr-xr-x 28 israa israa  4096 تشرين الثاني 23 11:18 ..
-rw-r--r--  1 israa israa  2165 تشرين الثاني 23 11:32 AUTHORS
-rw-r--r--  1 israa israa  1540 تشرين الثاني 23 11:32 ChangeLog
drwxrwxr-x  4 israa israa  4096 تشرين الثاني 23 11:32 docs
drwxrwxr-x  6 israa israa  4096 تشرين الثاني 23 11:32 examples
drwxrwxr-x  5 israa israa  4096 تشرين الثاني 23 11:32 include
-rw-r--r--  1 israa israa 29943 تشرين الثاني 23 11:32 INSTALL
-rw-r--r--  1 israa israa 18066 تشرين الثاني 23 11:32 INSTALL_USING_CMAKE
drwxrwxr-x  3 israa israa  4096 تشرين الثاني 23 11:32 lib-linux64
-rw-r--r--  1 israa israa 11358 تشرين الثاني 23 11:32 LICENSE
-rw-r--r--  1 israa israa  4597 تشرين الثاني 23 11:32 NEWS
-rw-r--r--  1 israa israa  3315 تشرين الثاني 23 11:32 NOTICE
-rw-r--r--  1 israa israa  4696 تشرين الثاني 23 11:32 README
-rw-r--r--  1 israa israa 31844 تشرين الثاني 23 11:32 RELEASENOTES

 

Also I am trying to go through the tutorials, but so far I was unable to solve the problem.

 

Best regards,

 

Israa
 

Link to comment
Share on other sites

Hello @Issraa,

Can you try setting the following environment variables:

# Below statement are for bash shell modify the export command to be consistent with your shells configuration
export SYSTEM_HOME=/home/israa/systemc
export LD_LIBRARY_PATH=$SYSTEMC_HOME/lib-linux64
# If echo $LD_LIBRARY_PATH is not empty then the following
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$SYSTEMC_HOME/lib-linux64

And try again.

Hope this helps.

Regards,

Ameya Vikram Singh

Link to comment
Share on other sites

Dear @AmeyaVS

 

Thank you for your response!

I tried the commands you mentioned as follows:

export SYSTEMC_HOME=/home/israa/systemc
 echo $SYSTEMC_HOME
/home/israa/systemc

 export LD_LIBRARY_PATH=$SYSTEMC_HOME/lib-linux64
echo $LD_LIBRARY_PATH
/home/israa/systemc/lib-linux64

However, The problem still persist and display the following message when I run my software:

error while loading shared libraries: libsystemc-2.3.3.so: cannot open shared object file: No such file or directory

Notice I am using Ubuntu 20.04

 

Best regards,

 

Israa

Link to comment
Share on other sites

Hello @Issraa,

That good to hear.

For completeness you can append at the end of the following file: ".bashrc"

# SystemC Install path
export SYSTEM_HOME=/home/israa/systemc
export LD_LIBRARY_PATH=$SYSTEMC_HOME/lib-linux64
# If echo $LD_LIBRARY_PATH is not empty then the following
#export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$SYSTEMC_HOME/lib-linux64

This will keep the configuration every time you open a new terminal.

For reference:

https://askubuntu.com/questions/58814/how-do-i-add-environment-variables

Hope this helps.

Regards,

Ameya Vikram Singh

Edited by AmeyaVS
Fix highlighting for the bashrc text
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...