You are not logged in.

#1 2012-11-05 06:18:43

Xyne
Administrator/PM
Registered: 2008-08-03
Posts: 6,963
Website

SALOME: git packages for all modules

Links

You can find the latest pkgbuilds here.
Use them as a starting point and post changes that get them to work.

Original Post

I have wanted to install SALOME for a while to try it but the existing AUR packages have never worked for me.

Part of the problem is that the source archives are hard to get from the website (registration required) but they now have a public git repository.
The other part of the problem is that the build documentation is hard to find.

I don't have much time to spend on this right now, so I'm hoping some people will want to collaborate on packaging this beast.You can find what I have so far here. I will update that as I go.

The first thing to build is the kernel module. I have used the dependencies of the existing salome-kernel package as a starting point (all are available and buildable). I do not know which are truly deps or what may be missing. This is how far I got before realizing that I don't have the time to continue right now:

Scanning dependencies of target SALOME_Container
[ 46%] Building CXX object src/Container/CMakeFiles/SALOME_Container.dir/SALOME_Container.o
[ 46%] Building CXX object src/Container/CMakeFiles/SALOME_Container.dir/SALOME_Container_SignalsHandler.o
Linking CXX executable SALOME_Container
libSalomeContainer.so: undefined reference to `PySys_SetArgv'
libSalomeContainer.so: undefined reference to `PyModule_GetDict'
libSalomeContainer.so: undefined reference to `PyErr_Print'
libSalomeContainer.so: undefined reference to `PyGILState_Ensure'
libSalomeContainer.so: undefined reference to `PyThreadState_Get'
libSalomeContainer.so: undefined reference to `PyArg_ParseTuple'
libSalomeContainer.so: undefined reference to `Py_SetProgramName'
libSalomeContainer.so: undefined reference to `PyInt_AsLong'
libSalomeContainer.so: undefined reference to `PyGILState_Release'
libSalomeContainer.so: undefined reference to `Py_Initialize'
libSalomeContainer.so: undefined reference to `PyRun_SimpleStringFlags'
libSalomeContainer.so: undefined reference to `PyEval_InitThreads'
libSalomeContainer.so: undefined reference to `PyDict_GetItemString'
libSalomeContainer.so: undefined reference to `PyTuple_GetItem'
libSalomeContainer.so: undefined reference to `PyEval_SaveThread'
libSalomeContainer.so: undefined reference to `PyString_AsString'
libSalomeContainer.so: undefined reference to `PyObject_CallMethod'
libSalomeContainer.so: undefined reference to `Py_IsInitialized'
libSalomeContainer.so: undefined reference to `PyImport_AddModule'
collect2: error: ld returned 1 exit status
make[2]: *** [src/Container/SALOME_Container] Error 1
make[1]: *** [src/Container/CMakeFiles/SALOME_Container.dir/all] Error 2
make: *** [all] Error 2
==> ERROR: A failure occurred in build().

My Arch Linux StuffForum EtiquetteCommunity Ethos - Arch is not for everyone

Offline

#2 2012-11-11 22:31:24

Xyne
Administrator/PM
Registered: 2008-08-03
Posts: 6,963
Website

Re: SALOME: git packages for all modules

After spending some more time on this today I have managed to get the kernel module to compile. It now blocks on installation due to hard-coded paths.

Install the project...
-- Install configuration: "Release"
-- Installing: /tmp/mx/xyne/sbx/salome-kernel-git/pkg/usr/include/salome/KERNEL_version.h
-- Installing: /tmp/mx/xyne/sbx/salome-kernel-git/pkg/usr/idl/salome/SALOME_Exception.idl
-- Installing: /tmp/mx/xyne/sbx/salome-kernel-git/pkg/usr/include/salome/SALOME_Exception.hh
CMake Error at idl/cmake_install.cmake:41 (FILE):
  file problem creating directory: /usr/lib/python2.7/site-packages/salome
Call Stack (most recent call first):
  idl/cmake_install.cmake:57 (OMNIORB_COMPILE_IDL_FORPYTHON_ON_INSTALL)
  cmake_install.cmake:41 (INCLUDE)

Again, the latest version of the PKGBUILD can be found here.

Last edited by Xyne (2012-11-11 22:32:20)


My Arch Linux StuffForum EtiquetteCommunity Ethos - Arch is not for everyone

Offline

#3 2012-11-23 18:07:06

maurofruet
Member
From: Italy, Europe
Registered: 2012-04-09
Posts: 5

Re: SALOME: git packages for all modules

Hi,
I would like to help to build this package. Have you already read this documentation file?
http://git.salome-platform.org/gitweb/? … ds/V6_main
The steps for building the package should be these:

1) mkdir <kernel_build>
2) mkdir <kernel_install>
3) cd <kernel_src>
4) ./build_configure
5) cd <kernel_build>
6) <kernel_src>/configure --prefix=<kernel_install>
7) make
8) make install

I have modified the PKGBUILD, but it fails at step 6: boost binaries are not found, even if boost is installed. I get the following error:

---------------------------------------------
BOOST Library
---------------------------------------------

configure: checking for BOOST Library...
configure: checking for BOOST location...
$BOOSTDIR = /usr
configure: checking for BOOST headers...
checking for /usr/include/boost/shared_ptr.hpp... yes
checking for /usr/include/boost/program_options.hpp... yes
for boost program_options tool: yes
$BOOST_CPPFLAGS = 
for boost headers: yes
configure: checking for BOOST binaries...
checking for /usr/lib/libboost_thread.so... yes
for boost binaries: no
for boost: no

...

============================================================
Summary
============================================================

--- General mandatory products - Light configuration:
           cc : yes
      threads : yes
       python : yes
         swig : yes
         hdf5 : yes
       libxml : yes

--- CORBA mandatory products - default configuration:
      omniORB : yes
    omniORBpy : yes
        boost : no
FATAL ERROR: some mandatory products are missing.
Installing the missing products is required before running the configure script.

Do you have any ideas why boost binaries are not found?

Here is my PKGBUILD:

pkgname=salome-kernel-git
pkgver=20121123
pkgrel=1
pkgdesc="generic platform for Pre and Post-Processing for numerical simulation (KERNEL Module)"
url="http://www.salome-platform.org"
depends=('python2' 'python2-numpy' 'boost' 'omniorb' 'omniorbpy' 'omninotify' 'swig' 'hdf5' 'graphviz' 'libxml2' 'cppunit' 'sed' 'openmpi')
makedepends=('git' 'doxygen' 'python2-sphinx')
arch=('i686' 'x86_64')
conflicts=('salome-kernel')
provides=('salome-kernel')
license=('LGPL')

_gitroot='git://git.salome-platform.org/KERNEL_SRC.git'
_gitname='KERNEL_SRC'
# _gitbranch='V5_1_main'
_gitbranch='V6_main'

build() {
  cd "$srcdir"
  msg "Connecting to GIT server...."

  if [[ -d "$_gitname" ]]; then
    cd "$_gitname"
    git pull origin "$_gitbranch"
    msg "The local files are updated."
  else
    git clone "$_gitroot" "$_gitname"
    cd "$_gitname"
    git checkout origin/"$_gitbranch"
  fi

  msg "GIT checkout done or server timeout"
  msg "Starting build..."

  mkdir -p "$srcdir/$_gitname-build"
  cd "$srcdir/$_gitname"
  ./build_configure
  cd "$srcdir/$_gitname-build"
  "$srcdir/$_gitname/configure" PYTHON=/usr/bin/python2

#  cmake ../"$_gitname" \
#    -DCMAKE_INSTALL_PREFIX="/usr" \
#    -DPYTHON_EXECUTABLE=/usr/bin/python2 \
#    -DPYTHON_INCLUDE_DIR=/usr/include/python2.7 \
#    -DPYTHON_LIB=/usr/lib/python2.7 \
#    -DPYTHON_LIB=/usr/lib/libpython2.7.so \
#    -DMPI_LIB_mpi=/usr/lib/openmpi/libmpi.so \
#    -DMPI_LIB_mpi_cxx=/usr/lib/openmpi/libmpi_cxx.so \
#    -DSPHINX_EXECUTABLE=/usr/bin/sphinx-build2

  make
}

package() {
  cd "$srcdir/$_gitname-build"
#   make DESTDIR="$pkgdir/" preinstall

  # This currently does not work due to hard-coded paths in the make files.
  # Using sed to correct these paths does not work because the make files are
  # recreated during the installation.
  make DESTDIR="$pkgdir/" install
}

# vim:set ts=2 sw=2 et:

Offline

#4 2012-11-25 06:30:58

Xyne
Administrator/PM
Registered: 2008-08-03
Posts: 6,963
Website

Re: SALOME: git packages for all modules

Hi maurofruet,

I spent a little time looking at the configuration script but I didn't understand how it checks for the boost binary. It seems to be in the function "ac_fn_cxx_try_compile", but the entire file feels like the result of a 72 hour coding binge.


maurofruet wrote:

Have you already read this documentation file?
http://git.salome-platform.org/gitweb/? … ds/V6_main

That document does not seem to be up-to-date. According to the site it's over a year old and it is no longer included in the git repo. Similar instructions can be found in <repo>/doc/salome/install.dox and that document even admits that the instructions are out-of-date.

I think the CMake approach above is more promising. It fails at installation but the build completes.


My Arch Linux StuffForum EtiquetteCommunity Ethos - Arch is not for everyone

Offline

#5 2013-03-14 00:07:44

tapia
Member
Registered: 2013-03-13
Posts: 56

Re: SALOME: git packages for all modules

Hi,
has anybody made any progress on this?

Offline

#6 2013-03-14 00:50:36

Xyne
Administrator/PM
Registered: 2008-08-03
Posts: 6,963
Website

Re: SALOME: git packages for all modules

I haven't looked at this in since I last posted. I'll try to take another look soon and see if I can get the arch-science project rolling too.

Feel free to try the PKGBUILD linked above and see if you can get it working now. They may have fixed their cmake setup by now.


My Arch Linux StuffForum EtiquetteCommunity Ethos - Arch is not for everyone

Offline

#7 2013-03-15 03:50:43

tapia
Member
Registered: 2013-03-13
Posts: 56

Re: SALOME: git packages for all modules

I wanted to try it when I posted this, but the link does not work anymore. Could you upload it again please, so I can try it?

It would be great to see this working on arch with no problems wink

Offline

#8 2013-03-15 19:45:12

Xyne
Administrator/PM
Registered: 2008-08-03
Posts: 6,963
Website

Re: SALOME: git packages for all modules

The links in the OP have been updated.


My Arch Linux StuffForum EtiquetteCommunity Ethos - Arch is not for everyone

Offline

#9 2013-03-19 01:49:26

tapia
Member
Registered: 2013-03-13
Posts: 56

Re: SALOME: git packages for all modules

I have just tried this and could compile the salome-kernel with no errors smile There was only one thing I had to edit: I couldn't install omniorbpy, so I just deleted it from the dependencies (there was a conflict when I tried to install it). So what is next? How do I compile the other components of Salome?

Last edited by tapia (2013-03-19 01:52:52)

Offline

#10 2013-03-24 07:23:52

Xyne
Administrator/PM
Registered: 2008-08-03
Posts: 6,963
Website

Re: SALOME: git packages for all modules

I have updated the directory on my site with new PKGBUILDs for salome-kernel-git. The next package to compile is salome-med-git, but it depends on the outdated med package in the AUR. med is one of the Code_Aster packages which are also a mess at the moment.

The next step is to clean that up.

This will be a long journey. I think we need some hobbits.


My Arch Linux StuffForum EtiquetteCommunity Ethos - Arch is not for everyone

Offline

#11 2013-03-27 15:13:00

tapia
Member
Registered: 2013-03-13
Posts: 56

Re: SALOME: git packages for all modules

Those two are exactly the programs I use (Code_Aster and Salome), so I am willing to help here. I begun to use Arch only since February, so I am not very familiar yet in the arts of making AUR packages tongue, but I am willing to help. I tried to compile the other parts of Salome some days ago, but there was an error, saying, that the root for salome-kernel needed to be defined (which I did!).

Last edited by tapia (2013-03-27 15:13:39)

Offline

#12 2013-03-28 18:27:19

Xyne
Administrator/PM
Registered: 2008-08-03
Posts: 6,963
Website

Re: SALOME: git packages for all modules

Your help will be appreciated. smile


My Arch Linux StuffForum EtiquetteCommunity Ethos - Arch is not for everyone

Offline

#13 2013-03-29 00:24:19

tapia
Member
Registered: 2013-03-13
Posts: 56

Re: SALOME: git packages for all modules

I tried to build salome-med-git, but I found, that first we need to compile salome-gui-git. So I tried to build it, but i'm getting this error:

We absolutely need a Salome KERNEL, please define KERNEL_ROOT_DIR

I try to set that variable with this:

export KERNEL_ROOT_DIR=/opt/salome_test/kernel

but that doesn't seem to help.

Last edited by tapia (2013-03-29 00:25:03)

Offline

#14 2013-04-04 01:41:43

TobiHolzmann
Member
Registered: 2013-04-04
Posts: 5
Website

Re: SALOME: git packages for all modules

Hi all,

I want to build the salome tool on arch linux too and will help you guys in building the stuff.

But at the moment I am not able to build the kernel of salome:

==> Bestimme letzte git Revision ...
  -> Gefundene Version: 20130404
==> Erstelle Paket: salome-kernel-git 20130404-1 (Do 4. Apr 02:39:55 CEST 2013)
==> Prüfe Laufzeit-Abhängigkeiten...
==> Prüfe Buildtime-Abhängigkeiten...
==> Empfange Quellen...
==> Entpacke Quellen...
==> Entferne existierendes pkg/ Verzeichnis...
==> Beginne build()...
====================================================== aclocal
configure.ac:197: warning: AC_REQUIRE: `AC_PROG_F77' was expanded before it was required
configure.ac:197: http://www.gnu.org/software/autoconf/manual/autoconf.html#Expanded-Before-Required
../../lib/autoconf/fortran.m4:254: AC_LANG_COMPILER(Fortran 77) is expanded from...
../../lib/autoconf/lang.m4:329: AC_LANG_COMPILER_REQUIRE is expanded from...
../../lib/autoconf/general.m4:2678: AC_LINK_IFELSE is expanded from...
../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from...
../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from...
salome_adm/unix/config_files/libtool.m4:1130: _LT_SYS_MODULE_PATH_AIX is expanded from...
salome_adm/unix/config_files/libtool.m4:4542: _LT_LINKER_SHLIBS is expanded from...
salome_adm/unix/config_files/libtool.m4:7164: _LT_LANG_F77_CONFIG is expanded from...
salome_adm/unix/config_files/libtool.m4:819: _LT_LANG is expanded from...
salome_adm/unix/config_files/libtool.m4:801: LT_LANG is expanded from...
salome_adm/unix/config_files/check_f77.m4:23: CHECK_F77 is expanded from...
salome_adm/unix/config_files/check_calcium.m4:20: CHECK_CALCIUM is expanded from...
configure.ac:197: the top level
configure.ac:197: warning: AC_REQUIRE: `AC_F77_LIBRARY_LDFLAGS' was expanded before it was required
configure.ac:197: http://www.gnu.org/software/autoconf/manual/autoconf.html#Expanded-Before-Required
../../lib/autoconf/fortran.m4:1004: _AC_F77_NAME_MANGLING is expanded from...
../../lib/autoconf/fortran.m4:1071: AC_F77_WRAPPERS is expanded from...
salome_adm/unix/config_files/check_f77.m4:23: CHECK_F77 is expanded from...
salome_adm/unix/config_files/check_calcium.m4:20: CHECK_CALCIUM is expanded from...
configure.ac:197: the top level
====================================================== libtoolize
====================================================== autoconf
configure.ac:197: warning: AC_REQUIRE: `AC_PROG_F77' was expanded before it was required
configure.ac:197: http://www.gnu.org/software/autoconf/manual/autoconf.html#Expanded-Before-Required
../../lib/autoconf/fortran.m4:254: AC_LANG_COMPILER(Fortran 77) is expanded from...
../../lib/autoconf/lang.m4:329: AC_LANG_COMPILER_REQUIRE is expanded from...
../../lib/autoconf/general.m4:2678: AC_LINK_IFELSE is expanded from...
../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from...
../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from...
salome_adm/unix/config_files/libtool.m4:1130: _LT_SYS_MODULE_PATH_AIX is expanded from...
salome_adm/unix/config_files/libtool.m4:4542: _LT_LINKER_SHLIBS is expanded from...
salome_adm/unix/config_files/libtool.m4:7164: _LT_LANG_F77_CONFIG is expanded from...
salome_adm/unix/config_files/libtool.m4:819: _LT_LANG is expanded from...
salome_adm/unix/config_files/libtool.m4:801: LT_LANG is expanded from...
salome_adm/unix/config_files/check_f77.m4:23: CHECK_F77 is expanded from...
salome_adm/unix/config_files/check_calcium.m4:20: CHECK_CALCIUM is expanded from...
configure.ac:197: the top level
configure.ac:197: warning: AC_REQUIRE: `AC_F77_LIBRARY_LDFLAGS' was expanded before it was required
configure.ac:197: http://www.gnu.org/software/autoconf/manual/autoconf.html#Expanded-Before-Required
../../lib/autoconf/fortran.m4:1004: _AC_F77_NAME_MANGLING is expanded from...
../../lib/autoconf/fortran.m4:1071: AC_F77_WRAPPERS is expanded from...
salome_adm/unix/config_files/check_f77.m4:23: CHECK_F77 is expanded from...
salome_adm/unix/config_files/check_calcium.m4:20: CHECK_CALCIUM is expanded from...
configure.ac:197: the top level
====================================================== automake
configure.ac:197: warning: AC_REQUIRE: `AC_PROG_F77' was expanded before it was required
configure.ac:197: http://www.gnu.org/software/autoconf/manual/autoconf.html#Expanded-Before-Required
../../lib/autoconf/fortran.m4:254: AC_LANG_COMPILER(Fortran 77) is expanded from...
../../lib/autoconf/lang.m4:329: AC_LANG_COMPILER_REQUIRE is expanded from...
../../lib/autoconf/general.m4:2678: AC_LINK_IFELSE is expanded from...
../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from...
../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from...
salome_adm/unix/config_files/libtool.m4:1130: _LT_SYS_MODULE_PATH_AIX is expanded from...
salome_adm/unix/config_files/libtool.m4:4542: _LT_LINKER_SHLIBS is expanded from...
salome_adm/unix/config_files/libtool.m4:7164: _LT_LANG_F77_CONFIG is expanded from...
salome_adm/unix/config_files/libtool.m4:819: _LT_LANG is expanded from...
salome_adm/unix/config_files/libtool.m4:801: LT_LANG is expanded from...
salome_adm/unix/config_files/check_f77.m4:23: CHECK_F77 is expanded from...
salome_adm/unix/config_files/check_calcium.m4:20: CHECK_CALCIUM is expanded from...
configure.ac:197: the top level
configure.ac:197: warning: AC_REQUIRE: `AC_F77_LIBRARY_LDFLAGS' was expanded before it was required
configure.ac:197: http://www.gnu.org/software/autoconf/manual/autoconf.html#Expanded-Before-Required
../../lib/autoconf/fortran.m4:1004: _AC_F77_NAME_MANGLING is expanded from...
../../lib/autoconf/fortran.m4:1071: AC_F77_WRAPPERS is expanded from...
salome_adm/unix/config_files/check_f77.m4:23: CHECK_F77 is expanded from...
salome_adm/unix/config_files/check_calcium.m4:20: CHECK_CALCIUM is expanded from...
configure.ac:197: the top level
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-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 make supports nested variables... yes
checking how to create a pax tar archive... gnutar

---------------------------------------------
Initialize source and build root directories
---------------------------------------------


Source root directory : /home/shor-ty/Build/salome/src/KERNEL_SRC
Build root directory : /home/shor-ty/Build/salome/src/KERNEL_SRC


============================================================
testing general mandatory products - for all configurations
============================================================

checking for sh... /bin/sh
checking for ar... ar

---------------------------------------------
testing make
---------------------------------------------

checking whether make sets $(MAKE)... (cached) yes

---------------------------------------------
Configuring production
---------------------------------------------

checking wether  accepts -Wparentheses... no
checking wether  accepts -Wreturn-type... no
checking wether  accepts -fmessage-length=0... no
checking wether  accepts -Wunused... no
checking wether  accepts -pipe... no

---------------------------------------------
testing libtool
---------------------------------------------

checking how to print strings... printf
checking for style of include used by make... GNU
checking for gcc... gcc
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 gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking dependency style of gcc... gcc3
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 gcc... /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 whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking how to convert i686-pc-linux-gnu file names to i686-pc-linux-gnu format... func_convert_file_noop
checking how to convert i686-pc-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 archiver @FILE support... @
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for sysroot... no
checking for mt... no
checking if : is a manifest tool... no
checking how to run the C preprocessor... gcc -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 gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... yes
checking if gcc static flag -static works... yes
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking for shl_load... no
checking for shl_load in -ldld... no
checking for dlopen... no
checking for dlopen in -ldl... yes
checking whether a program can dlopen itself... yes
checking whether a statically linked program can dlopen itself... no
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no

---------------------------------------------
testing C/C++
---------------------------------------------

checking for gcc... (cached) gcc
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ISO C89... (cached) none needed
checking dependency style of gcc... (cached) gcc3
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking dependency style of g++... gcc3
checking how to run the C++ preprocessor... g++ -E
checking for ld used by g++... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes
checking for g++ option to produce PIC... -fPIC -DPIC
checking if g++ PIC flag -fPIC -DPIC works... yes
checking if g++ static flag -static works... yes
checking if g++ supports -c -o file.o... yes
checking if g++ supports -c -o file.o... (cached) yes
checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... (cached) GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking wether g++ accepts -Wparentheses... yes
checking wether g++ accepts -Wreturn-type... yes
checking wether g++ accepts -Wunused... yes
checking wether g++ accepts -ftemplate-depth-42... yes
checking wether g++ accepts -tweak... no
checking which flag for dependency information generation...  C :  gcc -MM -MG C++ : g++ -MM -MG ... done
checking for dlopen in -ldl... (cached) yes
checking for nanosleep in -lrt... yes
checking for ceil in -lm... yes
checking whether the compiler use std iostream... yes
checking whether the compiler implements namespaces... yes
checking whether the compiler has stringstream... yes
configure: checking for LIB_LOCATION_SUFFIX...
LIB_LOCATION_SUFFIX is 
checking wether g++ accepts -Xlinker -export-dynamic... yes
checking wether g++ accepts -Xlinker -enable-new-dtags... yes

---------------------------------------------
testing Fortran INTEGER size for CALCIUM
---------------------------------------------

checking for g77... no
checking for xlf... no
checking for f77... no
checking for frt... no
checking for pgf77... no
checking for cf77... no
checking for fort77... no
checking for fl32... no
checking for af77... no
checking for xlf90... no
checking for f90... no
checking for pgf90... no
checking for pghpf... no
checking for epcf90... no
checking for gfortran... gfortran
checking whether we are using the GNU Fortran 77 compiler... yes
checking whether gfortran accepts -g... yes
checking how to get verbose linking output from gfortran... -v
checking for Fortran 77 libraries of gfortran...  -L/usr/lib/gcc/i686-pc-linux-gnu/4.8.0 -L/usr/lib/gcc/i686-pc-linux-gnu/4.8.0/../../.. -lgfortran -lm -lrt -ldl -lquadmath
checking for dummy main to link with Fortran 77 libraries... none
checking for Fortran 77 name-mangling scheme... lower case, underscore, no extra underscore
checking whether we are using the GNU Fortran 77 compiler... (cached) yes
checking whether gfortran accepts -g... (cached) yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no
checking for gfortran option to produce PIC... -fPIC
checking if gfortran PIC flag -fPIC works... yes
checking if gfortran static flag -static works... yes
checking if gfortran supports -c -o file.o... yes
checking if gfortran supports -c -o file.o... (cached) yes
checking whether the gfortran linker (/usr/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... (cached) GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking how to get verbose linking output from gfortran... (cached) -v
checking for Fortran 77 libraries of gfortran... (cached)  -L/usr/lib/gcc/i686-pc-linux-gnu/4.8.0 -L/usr/lib/gcc/i686-pc-linux-gnu/4.8.0/../../.. -lgfortran -lm -lrt -ldl -lquadmath
checking size of long... 4
checking size of int... 4
checking size of Fortran integer... 4

---------------------------------------------
testing threads
---------------------------------------------

checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... PTHREAD_CREATE_JOINABLE
checking if more special flags are required for pthreads... no
checking for cc_r... gcc

---------------------------------------------
testing python
---------------------------------------------

checking for python... /usr/bin/python2
configure: checking local Python configuration...
checking if we need libdb... no
checking if we need libdl... yes
checking for dlopen in -ldl... (cached) yes
checking if we need libutil... yes
checking for openpty in -lutil... yes
checking if we need tcltk... no
looks good

---------------------------------------------
testing swig
---------------------------------------------

checking whether /usr/bin/python2 version is >= 2.4... yes
checking for /usr/bin/python2 version... 2.7
checking for /usr/bin/python2 platform... linux2
checking for /usr/bin/python2 script directory... ${prefix}/lib/python2.7/site-packages
checking for /usr/bin/python2 extension module directory... ${exec_prefix}/lib/python2.7/site-packages
checking for swig... /usr/bin/swig
checking python wrapper generation with swig... yes
for swig: yes

---------------------------------------------
Testing libxml2
---------------------------------------------

configure: checking for libxml library...
configure: checking for libxml location...
$LIBXML_DIR = 
configure: Trying native Libxml2...
checking libxml/parser.h usability... yes
checking libxml/parser.h presence... yes
checking for libxml/parser.h... yes
checking for xmlInitParser in -lxml2... yes
for libxml: yes

---------------------------------------------
checking if MPI is requested by user
---------------------------------------------


---------------------------------------------
testing HDF5
---------------------------------------------

configure: checking for HDF5...
configure: WARNING: undefined HDF5HOME variable which specify hdf5 installation directory
configure: Trying native Hdf5...
checking if hdf5 is parallel and thus needs mpi... no
checking hdf5.h usability... yes
checking hdf5.h presence... yes
checking for hdf5.h... yes
checking for H5open in -lhdf5... yes
for hdf5: yes

============================================================
testing mandatory products for CORBA configurations
============================================================


---------------------------------------------
testing sockets
---------------------------------------------

checking for libraries containing socket functions... -lc

---------------------------------------------
Configuration of the ORB
---------------------------------------------

Testing OMNIORB ...
configure: checking for omniORB...
checking for omniidl... /usr/bin/omniidl
checking CORBA.h usability... yes
checking CORBA.h presence... yes
checking for CORBA.h... yes
checking whether we can link with omnithreads... yes
checking for socket in -lsocket... no
checking for gethostbyname in -lnsl... yes
checking whether we can link with omniORB... yes
checking omniORBpy... yes
for omniORBpy: yes
for omniORB: yes
checking whether we have double and CORBA::Double compatibility... yes
checking whether we have int and CORBA::Long compatibility... yes
Selecting the default ORB
DEFAULT_ORB : omniORB
default orb : omniORB

---------------------------------------------
BOOST Library
---------------------------------------------

configure: checking for BOOST Library...
configure: checking for BOOST location...
$BOOSTDIR = /usr
configure: checking for BOOST headers...
checking for /usr/include/boost/shared_ptr.hpp... yes
checking for /usr/include/boost/program_options.hpp... yes
for boost program_options tool: yes
$BOOST_CPPFLAGS = 
for boost headers: yes
configure: checking for BOOST binaries...
checking for /usr/lib/libboost_thread.so... yes
$BOOST_LIBSUFFIX = 
$BOOST_LIBS = 
checking for /usr/lib/libboost_thread.so... (cached) yes
checking for /usr/lib/libboost_signals.so... yes
checking for /usr/lib/libboost_system.so... yes
checking for /usr/lib/libboost_regex.so... yes
for boost binaries: yes
for boost: yes

============================================================
testing parallel products
============================================================


---------------------------------------------
checking if PaCO++ is requested by user
---------------------------------------------

checking for PaCO++... no

------------------------------------------------------------
checking if parallel kernel extensions are requested by user
------------------------------------------------------------

checking whether to enable parallel kernel extension... no

============================================================
testing optionnal products
============================================================


----------------------------------------------
testing CPPUNIT only required for unit testing
----------------------------------------------

configure: checking for cppunit...
CPPUNITHOME not defined
checking for /usr/local/lib64/libcppunit.so... no
checking for /usr/local/lib/libcppunit.so... no
checking for /usr/lib64/libcppunit.so... no
checking for /usr/lib/libcppunit.so... yes
libcppunit.so detected in /usr/lib
checking cppunit/extensions/HelperMacros.h usability... yes
checking cppunit/extensions/HelperMacros.h presence... yes
checking for cppunit/extensions/HelperMacros.h... yes
yes

--------------------------------------------------------------
Testing libBatch only required for batch functions in Launcher
--------------------------------------------------------------

configure: Checking for libBatch library
checking Batch/Batch_BatchManager.hxx usability... no
checking Batch/Batch_BatchManager.hxx presence... no
checking for Batch/Batch_BatchManager.hxx... no
for libBatch: no

============================================================
testing products required only for documentation generation
============================================================


---------------------------------------------
Testing html generators
---------------------------------------------

checking for doxygen... /usr/bin/doxygen
doxygen version 1.8.3.1
doxygen with support STL    - yes
doxygen with support PYTHON - yes
checking for dot... /usr/bin/dot
checking for latex... no
configure: WARNING: latex not found
checking for dvips... no
configure: WARNING: dvips not found
checking for pdflatex... no
configure: WARNING: pdflatex not found
checking for rst2html... /usr/bin/rst2html

---------------------------------------------
testing sphinx
---------------------------------------------

configure: checking for sphinx doc generator...
checking for sphinx-build... no
configure: WARNING: sphinx not found

============================================================
Summary
============================================================

--- General mandatory products - Light configuration:
           cc : yes
      threads : yes
       python : yes
         swig : yes
         hdf5 : yes
       libxml : yes

--- CORBA mandatory products - default configuration:
      omniORB : yes
    omniORBpy : yes
        boost : yes

--- Kernel parallel extensions:
          mpi : no
         PaCO : no
   parallel_extension : no

--- Optional products:
    These products are optional because the KERNEL functions
    using them are built only if the products are detected.
      cppunit : yes
        numpy : yes
     libbatch : no

    Warning: Batch functions will not be available in
    Salome Launcher because they require libBatch.

--- Html documentation products: only required for doc production
      doxygen : yes
     graphviz : yes
     rst2html : yes
       sphinx : no


Default ORB   : omniORB


---------------------------------------------
generating Makefiles and configure files
---------------------------------------------

checking that generated files are newer than configure... done
configure: creating ./config.status
config.status: creating KERNEL_version.h
config.status: creating salome_adm/SALOMEconfig.ref
config.status: creating salome_adm/Makefile
config.status: creating salome_adm/cmake_files/Makefile
config.status: creating salome_adm/cmake_files/deprecated/Makefile
config.status: creating salome_adm/unix/Makefile
config.status: creating salome_adm/unix/config_files/Makefile
config.status: creating Makefile
config.status: creating bin/Makefile
config.status: creating bin/appliskel/Makefile
config.status: creating bin/VERSION
config.status: creating doc/Makefile
config.status: creating doc/docutils/conf.py
config.status: creating doc/salome/Makefile
config.status: creating doc/salome/tui/Makefile
config.status: creating doc/salome/tui/doxyfile
config.status: creating doc/salome/tui/static/header.html
config.status: creating doc/salome/gui/Makefile
config.status: creating doc/salome/gui/doxyfile
config.status: creating doc/salome/gui/static/header.html
config.status: creating doc/docutils/Makefile
config.status: creating idl/Makefile
config.status: creating idl/Calcium_Ports.idl
config.status: creating resources/Makefile
config.status: creating resources/KERNELCatalog.xml
config.status: creating resources/CatalogResources.xml
config.status: creating src/Makefile
config.status: creating src/Basics/Makefile
config.status: creating src/Basics/Test/Makefile
config.status: creating src/Communication/Makefile
config.status: creating src/Communication_SWIG/Makefile
config.status: creating src/Container/Makefile
config.status: creating src/ParallelContainer/Makefile
config.status: creating src/DF/Makefile
config.status: creating src/DSC/Makefile
config.status: creating src/DSC/DSC_Basic/Makefile
config.status: creating src/DSC/DSC_User/Makefile
config.status: creating src/DSC/DSC_User/Basic/Makefile
config.status: creating src/DSC/DSC_User/Datastream/Makefile
config.status: creating src/DSC/DSC_User/Datastream/Palm/Makefile
config.status: creating src/DSC/DSC_User/Datastream/Calcium/Makefile
config.status: creating src/DSC/DSC_User/Datastream/Calcium/calcium_integer_port_uses.hxx
config.status: creating src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.hxx
config.status: creating src/DSC/DSC_User/Datastream/Calcium/CalciumFortranInt.h
config.status: creating src/DSC/ParallelDSC/Makefile
config.status: creating src/DSC/DSC_Python/Makefile
config.status: creating src/GenericObj/Makefile
config.status: creating src/HDFPersist/Makefile
config.status: creating src/KERNEL_PY/Makefile
config.status: creating src/KERNEL_PY/kernel/Makefile
config.status: creating src/KERNEL_PY/kernel/kernelpy_autotest.sh
config.status: creating src/KERNEL_PY/kernel/logconfig.py
config.status: creating src/KERNEL_PY/kernel/parametric/Makefile
config.status: creating src/Launcher/Makefile
config.status: creating src/LifeCycleCORBA/Makefile
config.status: creating src/LifeCycleCORBA/Test/Makefile
config.status: creating src/LifeCycleCORBA_SWIG/Makefile
config.status: creating src/LifeCycleCORBA_SWIG/Test/Makefile
config.status: creating src/Logger/Makefile
config.status: creating src/Logger/Test/Makefile
config.status: creating src/ModuleCatalog/Makefile
config.status: creating src/ModuleGenerator/Makefile
config.status: creating src/ModuleGenerator/testIDLparser
config.status: creating src/MPIContainer/Makefile
config.status: creating src/NamingService/Makefile
config.status: creating src/NamingService/Test/Makefile
config.status: creating src/Notification/Makefile
config.status: creating src/NOTIFICATION_SWIG/Makefile
config.status: creating src/Registry/Makefile
config.status: creating src/ResourcesManager/Makefile
config.status: creating src/SALOMEDS/Makefile
config.status: creating src/SALOMEDS/Test/Makefile
config.status: creating src/SALOMEDSClient/Makefile
config.status: creating src/SALOMEDSImpl/Makefile
config.status: creating src/SALOMEDSImpl/Test/Makefile
config.status: creating src/SALOMELocalTrace/Makefile
config.status: creating src/SALOMELocalTrace/Test/Makefile
config.status: creating src/SALOMETraceCollector/Makefile
config.status: creating src/SALOMETraceCollector/Test/Makefile
config.status: creating src/TestContainer/Makefile
config.status: creating src/TestMPIContainer/Makefile
config.status: creating src/TOOLSDS/Makefile
config.status: creating src/UnitTests/Makefile
config.status: creating src/Utils/Makefile
config.status: creating src/Utils/Test/Makefile
config.status: creating src/KernelHelpers/Makefile
config.status: creating src/KernelHelpers/Test/Makefile
config.status: executing depfiles commands
config.status: executing libtool commands
config.status: executing hack_libtool commands
CDPATH="${ZSH_VERSION+.}:" && cd . && /bin/sh /home/shor-ty/Build/salome/src/KERNEL_SRC/salome_adm/unix/config_files/missing aclocal-1.13 -I salome_adm/unix/config_files
configure.ac:197: warning: AC_REQUIRE: `AC_PROG_F77' was expanded before it was required
configure.ac:197: http://www.gnu.org/software/autoconf/manual/autoconf.html#Expanded-Before-Required
../../lib/autoconf/fortran.m4:254: AC_LANG_COMPILER(Fortran 77) is expanded from...
../../lib/autoconf/lang.m4:329: AC_LANG_COMPILER_REQUIRE is expanded from...
../../lib/autoconf/general.m4:2678: AC_LINK_IFELSE is expanded from...
../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from...
../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from...
salome_adm/unix/config_files/libtool.m4:1130: _LT_SYS_MODULE_PATH_AIX is expanded from...
salome_adm/unix/config_files/libtool.m4:4542: _LT_LINKER_SHLIBS is expanded from...
salome_adm/unix/config_files/libtool.m4:7164: _LT_LANG_F77_CONFIG is expanded from...
salome_adm/unix/config_files/libtool.m4:819: _LT_LANG is expanded from...
salome_adm/unix/config_files/libtool.m4:801: LT_LANG is expanded from...
salome_adm/unix/config_files/check_f77.m4:23: CHECK_F77 is expanded from...
salome_adm/unix/config_files/check_calcium.m4:20: CHECK_CALCIUM is expanded from...
configure.ac:197: the top level
configure.ac:197: warning: AC_REQUIRE: `AC_F77_LIBRARY_LDFLAGS' was expanded before it was required
configure.ac:197: http://www.gnu.org/software/autoconf/manual/autoconf.html#Expanded-Before-Required
../../lib/autoconf/fortran.m4:1004: _AC_F77_NAME_MANGLING is expanded from...
../../lib/autoconf/fortran.m4:1071: AC_F77_WRAPPERS is expanded from...
salome_adm/unix/config_files/check_f77.m4:23: CHECK_F77 is expanded from...
salome_adm/unix/config_files/check_calcium.m4:20: CHECK_CALCIUM is expanded from...
configure.ac:197: the top level
 cd . && /bin/sh /home/shor-ty/Build/salome/src/KERNEL_SRC/salome_adm/unix/config_files/missing automake-1.13 --gnu
configure.ac:197: warning: AC_REQUIRE: `AC_PROG_F77' was expanded before it was required
configure.ac:197: http://www.gnu.org/software/autoconf/manual/autoconf.html#Expanded-Before-Required
../../lib/autoconf/fortran.m4:254: AC_LANG_COMPILER(Fortran 77) is expanded from...
../../lib/autoconf/lang.m4:329: AC_LANG_COMPILER_REQUIRE is expanded from...
../../lib/autoconf/general.m4:2678: AC_LINK_IFELSE is expanded from...
../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from...
../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from...
salome_adm/unix/config_files/libtool.m4:1130: _LT_SYS_MODULE_PATH_AIX is expanded from...
salome_adm/unix/config_files/libtool.m4:4542: _LT_LINKER_SHLIBS is expanded from...
salome_adm/unix/config_files/libtool.m4:7164: _LT_LANG_F77_CONFIG is expanded from...
salome_adm/unix/config_files/libtool.m4:819: _LT_LANG is expanded from...
salome_adm/unix/config_files/libtool.m4:801: LT_LANG is expanded from...
salome_adm/unix/config_files/check_f77.m4:23: CHECK_F77 is expanded from...
salome_adm/unix/config_files/check_calcium.m4:20: CHECK_CALCIUM is expanded from...
configure.ac:197: the top level
configure.ac:197: warning: AC_REQUIRE: `AC_F77_LIBRARY_LDFLAGS' was expanded before it was required
configure.ac:197: http://www.gnu.org/software/autoconf/manual/autoconf.html#Expanded-Before-Required
../../lib/autoconf/fortran.m4:1004: _AC_F77_NAME_MANGLING is expanded from...
../../lib/autoconf/fortran.m4:1071: AC_F77_WRAPPERS is expanded from...
salome_adm/unix/config_files/check_f77.m4:23: CHECK_F77 is expanded from...
salome_adm/unix/config_files/check_calcium.m4:20: CHECK_CALCIUM is expanded from...
configure.ac:197: the top level
CDPATH="${ZSH_VERSION+.}:" && cd . && /bin/sh /home/shor-ty/Build/salome/src/KERNEL_SRC/salome_adm/unix/config_files/missing autoconf
configure.ac:197: warning: AC_REQUIRE: `AC_PROG_F77' was expanded before it was required
configure.ac:197: http://www.gnu.org/software/autoconf/manual/autoconf.html#Expanded-Before-Required
../../lib/autoconf/fortran.m4:254: AC_LANG_COMPILER(Fortran 77) is expanded from...
../../lib/autoconf/lang.m4:329: AC_LANG_COMPILER_REQUIRE is expanded from...
../../lib/autoconf/general.m4:2678: AC_LINK_IFELSE is expanded from...
../../lib/m4sugar/m4sh.m4:639: AS_IF is expanded from...
../../lib/autoconf/general.m4:2031: AC_CACHE_VAL is expanded from...
salome_adm/unix/config_files/libtool.m4:1130: _LT_SYS_MODULE_PATH_AIX is expanded from...
salome_adm/unix/config_files/libtool.m4:4542: _LT_LINKER_SHLIBS is expanded from...
salome_adm/unix/config_files/libtool.m4:7164: _LT_LANG_F77_CONFIG is expanded from...
salome_adm/unix/config_files/libtool.m4:819: _LT_LANG is expanded from...
salome_adm/unix/config_files/libtool.m4:801: LT_LANG is expanded from...
salome_adm/unix/config_files/check_f77.m4:23: CHECK_F77 is expanded from...
salome_adm/unix/config_files/check_calcium.m4:20: CHECK_CALCIUM is expanded from...
configure.ac:197: the top level
configure.ac:197: warning: AC_REQUIRE: `AC_F77_LIBRARY_LDFLAGS' was expanded before it was required
configure.ac:197: http://www.gnu.org/software/autoconf/manual/autoconf.html#Expanded-Before-Required
../../lib/autoconf/fortran.m4:1004: _AC_F77_NAME_MANGLING is expanded from...
../../lib/autoconf/fortran.m4:1071: AC_F77_WRAPPERS is expanded from...
salome_adm/unix/config_files/check_f77.m4:23: CHECK_F77 is expanded from...
salome_adm/unix/config_files/check_calcium.m4:20: CHECK_CALCIUM is expanded from...
configure.ac:197: the top level
/bin/sh ./config.status --recheck
running CONFIG_SHELL=/bin/sh /bin/sh ./configure --prefix=/usr --with-python-site=/usr/lib/python2.7 CFLAGS=-march=i686 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 LDFLAGS=-Wl,-O1,--sort-common,--as-needed,-z,relro CXXFLAGS=-march=i686 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 PYTHON=/usr/bin/python2 --no-create --no-recursion
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-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 make supports nested variables... yes
checking how to create a pax tar archive... gnutar

---------------------------------------------
Initialize source and build root directories
---------------------------------------------


Source root directory : /home/shor-ty/Build/salome/src/KERNEL_SRC
Build root directory : /home/shor-ty/Build/salome/src/KERNEL_SRC


============================================================
testing general mandatory products - for all configurations
============================================================

checking for sh... /bin/sh
checking for ar... ar

---------------------------------------------
testing make
---------------------------------------------

checking whether make sets $(MAKE)... (cached) yes

---------------------------------------------
Configuring production
---------------------------------------------

checking wether  accepts -Wparentheses... no
checking wether  accepts -Wreturn-type... no
checking wether  accepts -fmessage-length=0... no
checking wether  accepts -Wunused... no
checking wether  accepts -pipe... no

---------------------------------------------
testing libtool
---------------------------------------------

checking how to print strings... printf
checking for style of include used by make... GNU
checking for gcc... gcc
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 gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking dependency style of gcc... gcc3
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 gcc... /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 whether the shell understands some XSI constructs... yes
checking whether the shell understands "+="... yes
checking how to convert i686-pc-linux-gnu file names to i686-pc-linux-gnu format... func_convert_file_noop
checking how to convert i686-pc-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 archiver @FILE support... @
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for sysroot... no
checking for mt... no
checking if : is a manifest tool... no
checking how to run the C preprocessor... gcc -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 gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... yes
checking if gcc static flag -static works... yes
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking for shl_load... no
checking for shl_load in -ldld... no
checking for dlopen... no
checking for dlopen in -ldl... yes
checking whether a program can dlopen itself... yes
checking whether a statically linked program can dlopen itself... no
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no

---------------------------------------------
testing C/C++
---------------------------------------------

checking for gcc... (cached) gcc
checking whether we are using the GNU C compiler... (cached) yes
checking whether gcc accepts -g... (cached) yes
checking for gcc option to accept ISO C89... (cached) none needed
checking dependency style of gcc... (cached) gcc3
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking dependency style of g++... gcc3
checking how to run the C++ preprocessor... g++ -E
checking for ld used by g++... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes
checking for g++ option to produce PIC... -fPIC -DPIC
checking if g++ PIC flag -fPIC -DPIC works... yes
checking if g++ static flag -static works... yes
checking if g++ supports -c -o file.o... yes
checking if g++ supports -c -o file.o... (cached) yes
checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... (cached) GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking wether g++ accepts -Wparentheses... yes
checking wether g++ accepts -Wreturn-type... yes
checking wether g++ accepts -Wunused... yes
checking wether g++ accepts -ftemplate-depth-42... yes
checking wether g++ accepts -tweak... no
checking which flag for dependency information generation...  C :  gcc -MM -MG C++ : g++ -MM -MG ... done
checking for dlopen in -ldl... (cached) yes
checking for nanosleep in -lrt... yes
checking for ceil in -lm... yes
checking whether the compiler use std iostream... yes
checking whether the compiler implements namespaces... yes
checking whether the compiler has stringstream... yes
configure: checking for LIB_LOCATION_SUFFIX...
LIB_LOCATION_SUFFIX is 
checking wether g++ accepts -Xlinker -export-dynamic... yes
checking wether g++ accepts -Xlinker -enable-new-dtags... yes

---------------------------------------------
testing Fortran INTEGER size for CALCIUM
---------------------------------------------

checking for g77... no
checking for xlf... no
checking for f77... no
checking for frt... no
checking for pgf77... no
checking for cf77... no
checking for fort77... no
checking for fl32... no
checking for af77... no
checking for xlf90... no
checking for f90... no
checking for pgf90... no
checking for pghpf... no
checking for epcf90... no
checking for gfortran... gfortran
checking whether we are using the GNU Fortran 77 compiler... yes
checking whether gfortran accepts -g... yes
checking how to get verbose linking output from gfortran... -v
checking for Fortran 77 libraries of gfortran...  -L/usr/lib/gcc/i686-pc-linux-gnu/4.8.0 -L/usr/lib/gcc/i686-pc-linux-gnu/4.8.0/../../.. -lgfortran -lm -lrt -ldl -lquadmath
checking for dummy main to link with Fortran 77 libraries... none
checking for Fortran 77 name-mangling scheme... lower case, underscore, no extra underscore
checking whether we are using the GNU Fortran 77 compiler... (cached) yes
checking whether gfortran accepts -g... (cached) yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... no
checking for gfortran option to produce PIC... -fPIC
checking if gfortran PIC flag -fPIC works... yes
checking if gfortran static flag -static works... yes
checking if gfortran supports -c -o file.o... yes
checking if gfortran supports -c -o file.o... (cached) yes
checking whether the gfortran linker (/usr/bin/ld) supports shared libraries... yes
checking dynamic linker characteristics... (cached) GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking how to get verbose linking output from gfortran... (cached) -v
checking for Fortran 77 libraries of gfortran... (cached)  -L/usr/lib/gcc/i686-pc-linux-gnu/4.8.0 -L/usr/lib/gcc/i686-pc-linux-gnu/4.8.0/../../.. -lgfortran -lm -lrt -ldl -lquadmath
checking size of long... 4
checking size of int... 4
checking size of Fortran integer... 4

---------------------------------------------
testing threads
---------------------------------------------

checking whether pthreads work with -pthread... yes
checking for joinable pthread attribute... PTHREAD_CREATE_JOINABLE
checking if more special flags are required for pthreads... no
checking for cc_r... gcc

---------------------------------------------
testing python
---------------------------------------------

checking for python... /usr/bin/python2
configure: checking local Python configuration...
checking if we need libdb... no
checking if we need libdl... yes
checking for dlopen in -ldl... (cached) yes
checking if we need libutil... yes
checking for openpty in -lutil... yes
checking if we need tcltk... no
looks good

---------------------------------------------
testing swig
---------------------------------------------

checking whether /usr/bin/python2 version is >= 2.4... yes
checking for /usr/bin/python2 version... 2.7
checking for /usr/bin/python2 platform... linux2
checking for /usr/bin/python2 script directory... ${prefix}/lib/python2.7/site-packages
checking for /usr/bin/python2 extension module directory... ${exec_prefix}/lib/python2.7/site-packages
checking for swig... /usr/bin/swig
checking python wrapper generation with swig... yes
for swig: yes

---------------------------------------------
Testing libxml2
---------------------------------------------

configure: checking for libxml library...
configure: checking for libxml location...
$LIBXML_DIR = 
configure: Trying native Libxml2...
checking libxml/parser.h usability... yes
checking libxml/parser.h presence... yes
checking for libxml/parser.h... yes
checking for xmlInitParser in -lxml2... yes
for libxml: yes

---------------------------------------------
checking if MPI is requested by user
---------------------------------------------


---------------------------------------------
testing HDF5
---------------------------------------------

configure: checking for HDF5...
configure: WARNING: undefined HDF5HOME variable which specify hdf5 installation directory
configure: Trying native Hdf5...
checking if hdf5 is parallel and thus needs mpi... no
checking hdf5.h usability... yes
checking hdf5.h presence... yes
checking for hdf5.h... yes
checking for H5open in -lhdf5... yes
for hdf5: yes

============================================================
testing mandatory products for CORBA configurations
============================================================


---------------------------------------------
testing sockets
---------------------------------------------

checking for libraries containing socket functions... -lc

---------------------------------------------
Configuration of the ORB
---------------------------------------------

Testing OMNIORB ...
configure: checking for omniORB...
checking for omniidl... /usr/bin/omniidl
checking CORBA.h usability... yes
checking CORBA.h presence... yes
checking for CORBA.h... yes
checking whether we can link with omnithreads... yes
checking for socket in -lsocket... no
checking for gethostbyname in -lnsl... yes
checking whether we can link with omniORB... yes
checking omniORBpy... yes
for omniORBpy: yes
for omniORB: yes
checking whether we have double and CORBA::Double compatibility... yes
checking whether we have int and CORBA::Long compatibility... yes
Selecting the default ORB
DEFAULT_ORB : omniORB
default orb : omniORB

---------------------------------------------
BOOST Library
---------------------------------------------

configure: checking for BOOST Library...
configure: checking for BOOST location...
$BOOSTDIR = /usr
configure: checking for BOOST headers...
checking for /usr/include/boost/shared_ptr.hpp... yes
checking for /usr/include/boost/program_options.hpp... yes
for boost program_options tool: yes
$BOOST_CPPFLAGS = 
for boost headers: yes
configure: checking for BOOST binaries...
checking for /usr/lib/libboost_thread.so... yes
$BOOST_LIBSUFFIX = 
$BOOST_LIBS = 
checking for /usr/lib/libboost_thread.so... (cached) yes
checking for /usr/lib/libboost_signals.so... yes
checking for /usr/lib/libboost_system.so... yes
checking for /usr/lib/libboost_regex.so... yes
for boost binaries: yes
for boost: yes

============================================================
testing parallel products
============================================================


---------------------------------------------
checking if PaCO++ is requested by user
---------------------------------------------

checking for PaCO++... no

------------------------------------------------------------
checking if parallel kernel extensions are requested by user
------------------------------------------------------------

checking whether to enable parallel kernel extension... no

============================================================
testing optionnal products
============================================================


----------------------------------------------
testing CPPUNIT only required for unit testing
----------------------------------------------

configure: checking for cppunit...
CPPUNITHOME not defined
checking for /usr/local/lib64/libcppunit.so... no
checking for /usr/local/lib/libcppunit.so... no
checking for /usr/lib64/libcppunit.so... no
checking for /usr/lib/libcppunit.so... yes
libcppunit.so detected in /usr/lib
checking cppunit/extensions/HelperMacros.h usability... yes
checking cppunit/extensions/HelperMacros.h presence... yes
checking for cppunit/extensions/HelperMacros.h... yes
yes

--------------------------------------------------------------
Testing libBatch only required for batch functions in Launcher
--------------------------------------------------------------

configure: Checking for libBatch library
checking Batch/Batch_BatchManager.hxx usability... no
checking Batch/Batch_BatchManager.hxx presence... no
checking for Batch/Batch_BatchManager.hxx... no
for libBatch: no

============================================================
testing products required only for documentation generation
============================================================


---------------------------------------------
Testing html generators
---------------------------------------------

checking for doxygen... /usr/bin/doxygen
doxygen version 1.8.3.1
doxygen with support STL    - yes
doxygen with support PYTHON - yes
checking for dot... /usr/bin/dot
checking for latex... no
configure: WARNING: latex not found
checking for dvips... no
configure: WARNING: dvips not found
checking for pdflatex... no
configure: WARNING: pdflatex not found
checking for rst2html... /usr/bin/rst2html

---------------------------------------------
testing sphinx
---------------------------------------------

configure: checking for sphinx doc generator...
checking for sphinx-build... no
configure: WARNING: sphinx not found

============================================================
Summary
============================================================

--- General mandatory products - Light configuration:
           cc : yes
      threads : yes
       python : yes
         swig : yes
         hdf5 : yes
       libxml : yes

--- CORBA mandatory products - default configuration:
      omniORB : yes
    omniORBpy : yes
        boost : yes

--- Kernel parallel extensions:
          mpi : no
         PaCO : no
   parallel_extension : no

--- Optional products:
    These products are optional because the KERNEL functions
    using them are built only if the products are detected.
      cppunit : yes
        numpy : yes
     libbatch : no

    Warning: Batch functions will not be available in
    Salome Launcher because they require libBatch.

--- Html documentation products: only required for doc production
      doxygen : yes
     graphviz : yes
     rst2html : yes
       sphinx : no


Default ORB   : omniORB


---------------------------------------------
generating Makefiles and configure files
---------------------------------------------

checking that generated files are newer than configure... done
configure: creating ./config.status
 /bin/sh ./config.status
config.status: creating KERNEL_version.h
config.status: creating salome_adm/SALOMEconfig.ref
config.status: creating salome_adm/Makefile
config.status: creating salome_adm/cmake_files/Makefile
config.status: creating salome_adm/cmake_files/deprecated/Makefile
config.status: creating salome_adm/unix/Makefile
config.status: creating salome_adm/unix/config_files/Makefile
config.status: creating Makefile
config.status: creating bin/Makefile
config.status: creating bin/appliskel/Makefile
config.status: creating bin/VERSION
config.status: creating doc/Makefile
config.status: creating doc/docutils/conf.py
config.status: creating doc/salome/Makefile
config.status: creating doc/salome/tui/Makefile
config.status: creating doc/salome/tui/doxyfile
config.status: creating doc/salome/tui/static/header.html
config.status: creating doc/salome/gui/Makefile
config.status: creating doc/salome/gui/doxyfile
config.status: creating doc/salome/gui/static/header.html
config.status: creating doc/docutils/Makefile
config.status: creating idl/Makefile
config.status: creating idl/Calcium_Ports.idl
config.status: creating resources/Makefile
config.status: creating resources/KERNELCatalog.xml
config.status: creating resources/CatalogResources.xml
config.status: creating src/Makefile
config.status: creating src/Basics/Makefile
config.status: creating src/Basics/Test/Makefile
config.status: creating src/Communication/Makefile
config.status: creating src/Communication_SWIG/Makefile
config.status: creating src/Container/Makefile
config.status: creating src/ParallelContainer/Makefile
config.status: creating src/DF/Makefile
config.status: creating src/DSC/Makefile
config.status: creating src/DSC/DSC_Basic/Makefile
config.status: creating src/DSC/DSC_User/Makefile
config.status: creating src/DSC/DSC_User/Basic/Makefile
config.status: creating src/DSC/DSC_User/Datastream/Makefile
config.status: creating src/DSC/DSC_User/Datastream/Palm/Makefile
config.status: creating src/DSC/DSC_User/Datastream/Calcium/Makefile
config.status: creating src/DSC/DSC_User/Datastream/Calcium/calcium_integer_port_uses.hxx
config.status: creating src/DSC/DSC_User/Datastream/Calcium/CalciumProvidesPort.hxx
config.status: creating src/DSC/DSC_User/Datastream/Calcium/CalciumFortranInt.h
config.status: creating src/DSC/ParallelDSC/Makefile
config.status: creating src/DSC/DSC_Python/Makefile
config.status: creating src/GenericObj/Makefile
config.status: creating src/HDFPersist/Makefile
config.status: creating src/KERNEL_PY/Makefile
config.status: creating src/KERNEL_PY/kernel/Makefile
config.status: creating src/KERNEL_PY/kernel/kernelpy_autotest.sh
config.status: creating src/KERNEL_PY/kernel/logconfig.py
config.status: creating src/KERNEL_PY/kernel/parametric/Makefile
config.status: creating src/Launcher/Makefile
config.status: creating src/LifeCycleCORBA/Makefile
config.status: creating src/LifeCycleCORBA/Test/Makefile
config.status: creating src/LifeCycleCORBA_SWIG/Makefile
config.status: creating src/LifeCycleCORBA_SWIG/Test/Makefile
config.status: creating src/Logger/Makefile
config.status: creating src/Logger/Test/Makefile
config.status: creating src/ModuleCatalog/Makefile
config.status: creating src/ModuleGenerator/Makefile
config.status: creating src/ModuleGenerator/testIDLparser
config.status: creating src/MPIContainer/Makefile
config.status: creating src/NamingService/Makefile
config.status: creating src/NamingService/Test/Makefile
config.status: creating src/Notification/Makefile
config.status: creating src/NOTIFICATION_SWIG/Makefile
config.status: creating src/Registry/Makefile
config.status: creating src/ResourcesManager/Makefile
config.status: creating src/SALOMEDS/Makefile
config.status: creating src/SALOMEDS/Test/Makefile
config.status: creating src/SALOMEDSClient/Makefile
config.status: creating src/SALOMEDSImpl/Makefile
config.status: creating src/SALOMEDSImpl/Test/Makefile
config.status: creating src/SALOMELocalTrace/Makefile
config.status: creating src/SALOMELocalTrace/Test/Makefile
config.status: creating src/SALOMETraceCollector/Makefile
config.status: creating src/SALOMETraceCollector/Test/Makefile
config.status: creating src/TestContainer/Makefile
config.status: creating src/TestMPIContainer/Makefile
config.status: creating src/TOOLSDS/Makefile
config.status: creating src/UnitTests/Makefile
config.status: creating src/Utils/Makefile
config.status: creating src/Utils/Test/Makefile
config.status: creating src/KernelHelpers/Makefile
config.status: creating src/KernelHelpers/Test/Makefile
config.status: executing depfiles commands
config.status: executing libtool commands
config.status: executing hack_libtool commands
Making all in salome_adm
make[1]: Entering directory `/home/shor-ty/Build/salome/src/KERNEL_SRC/salome_adm'
make  all-recursive
make[2]: Entering directory `/home/shor-ty/Build/salome/src/KERNEL_SRC/salome_adm'
Making all in unix
make[3]: Entering directory `/home/shor-ty/Build/salome/src/KERNEL_SRC/salome_adm/unix'
Making all in config_files
make[4]: Entering directory `/home/shor-ty/Build/salome/src/KERNEL_SRC/salome_adm/unix/config_files'
make[4]: Für das Ziel »all« ist nichts zu tun.
make[4]: Leaving directory `/home/shor-ty/Build/salome/src/KERNEL_SRC/salome_adm/unix/config_files'
make[4]: Entering directory `/home/shor-ty/Build/salome/src/KERNEL_SRC/salome_adm/unix'
make[4]: Für das Ziel »all-am« ist nichts zu tun.
make[4]: Leaving directory `/home/shor-ty/Build/salome/src/KERNEL_SRC/salome_adm/unix'
make[3]: Leaving directory `/home/shor-ty/Build/salome/src/KERNEL_SRC/salome_adm/unix'
Making all in cmake_files
make[3]: Entering directory `/home/shor-ty/Build/salome/src/KERNEL_SRC/salome_adm/cmake_files'
Making all in deprecated
make[4]: Entering directory `/home/shor-ty/Build/salome/src/KERNEL_SRC/salome_adm/cmake_files/deprecated'
make[4]: Für das Ziel »all« ist nichts zu tun.
make[4]: Leaving directory `/home/shor-ty/Build/salome/src/KERNEL_SRC/salome_adm/cmake_files/deprecated'
make[4]: Entering directory `/home/shor-ty/Build/salome/src/KERNEL_SRC/salome_adm/cmake_files'
make[4]: Für das Ziel »all-am« ist nichts zu tun.
make[4]: Leaving directory `/home/shor-ty/Build/salome/src/KERNEL_SRC/salome_adm/cmake_files'
make[3]: Leaving directory `/home/shor-ty/Build/salome/src/KERNEL_SRC/salome_adm/cmake_files'
make[3]: Entering directory `/home/shor-ty/Build/salome/src/KERNEL_SRC/salome_adm'
make[3]: Leaving directory `/home/shor-ty/Build/salome/src/KERNEL_SRC/salome_adm'
make[2]: Leaving directory `/home/shor-ty/Build/salome/src/KERNEL_SRC/salome_adm'
make[1]: Leaving directory `/home/shor-ty/Build/salome/src/KERNEL_SRC/salome_adm'
Making all in idl
make[1]: Entering directory `/home/shor-ty/Build/salome/src/KERNEL_SRC/idl'
Building dependencies for SALOME_Exception.idl
Building dependencies for SALOME_Comm.idl
Building dependencies for SALOME_ModuleCatalog.idl
Building dependencies for SALOME_RessourcesCatalog.idl
Building dependencies for SALOMEDS.idl
Building dependencies for SALOMEDS_Attributes.idl
Building dependencies for SALOME_Component.idl
Building dependencies for SALOME_ContainerManager.idl
Building dependencies for SALOME_TestComponent.idl
Building dependencies for SALOME_Registry.idl
Building dependencies for Logger.idl
Building dependencies for SALOME_GenericObj.idl
Building dependencies for SALOME_Types.idl
Building dependencies for SALOME_Session.idl
Building dependencies for SALOME_TestModuleCatalog.idl
Building dependencies for nstest.idl
Building dependencies for DSC_Engines.idl
Building dependencies for SALOME_Ports.idl
Building dependencies for SALOME_PyNode.idl
Building dependencies for Palm_Ports.idl
Building dependencies for SALOME_PACOExtension.idl
Building dependencies for SALOME_ParamPorts.idl
Building dependencies for SALOME_Parametric.idl
Building dependencies for SALOME_MPIObject.idl
Building dependencies for Calcium_Ports.idl
make[1]: Leaving directory `/home/shor-ty/Build/salome/src/KERNEL_SRC/idl'
make[1]: Entering directory `/home/shor-ty/Build/salome/src/KERNEL_SRC/idl'
/usr/bin/omniidl -bcxx -Wba -nf -I/usr/idl -I. -I../salome/idl Calcium_Ports.idl
make  all-am
make[2]: Entering directory `/home/shor-ty/Build/salome/src/KERNEL_SRC/idl'
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DPACKAGE_NAME=\"Salome2\ Project\" -DPACKAGE_TARNAME=\"SalomeKERNEL\" -DPACKAGE_VERSION=\"6.6.0\" -DPACKAGE_STRING=\"Salome2\ Project\ 6.6.0\" -DPACKAGE_BUGREPORT=\"paul.rascle@edf.fr\" -DPACKAGE_URL=\"\" -DPACKAGE=\"SalomeKERNEL\" -DVERSION=\"6.6.0\" -DHAVE_SALOME_CONFIG=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_LIBDL=1 -DHAVE_LIBRT=1 -DHAVE_LIBM=1 -DHAVE_NAMESPACES=/\*\*/ -DF77_FUNC\(name,NAME\)=name\ ##\ _ -DF77_FUNC_\(name,NAME\)=name\ ##\ _ -DSIZEOF_LONG=4 -DSIZEOF_INT=4 -DSIZEOF_FORTRAN_INTEGER=4 -DCAL_INT=int -DHAVE_PTHREAD=1 -DWITH_NUMPY=/\*\*/ -D__OSVERSION__=2 -DOMNIORB=/\*\*/ -DCORBA_HAVE_POA=/\*\*/ -DCORBA_ORB_INIT_HAVE_3_ARGS=/\*\*/ -DCORBA_ORB_INIT_THIRD_ARG=/\*\*/ -I.  -I../idl -DOMNIORB_VERSION=4 -D__x86__ -D__linux__ -DCOMP_CORBA_DOUBLE -DCOMP_CORBA_LONG -I/usr/include -I/usr/include/omniORB4 -I/usr/include/COS -DHAVE_SOCKET   -I../salome_adm -include SALOMEconfig.h -fPIC -march=i686 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -g -Wparentheses -Wreturn-type -Wunused -pthread -MT libSalomeIDLKernel_la-Calcium_PortsSK.lo -MD -MP -MF .deps/libSalomeIDLKernel_la-Calcium_PortsSK.Tpo -c -o libSalomeIDLKernel_la-Calcium_PortsSK.lo `test -f 'Calcium_PortsSK.cc' || echo './'`Calcium_PortsSK.cc
libtool: compile:  g++ "-DPACKAGE_NAME=\"Salome2 Project\"" -DPACKAGE_TARNAME=\"SalomeKERNEL\" -DPACKAGE_VERSION=\"6.6.0\" "-DPACKAGE_STRING=\"Salome2 Project 6.6.0\"" -DPACKAGE_BUGREPORT=\"paul.rascle@edf.fr\" -DPACKAGE_URL=\"\" -DPACKAGE=\"SalomeKERNEL\" -DVERSION=\"6.6.0\" "-DHAVE_SALOME_CONFIG=/**/" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_LIBDL=1 -DHAVE_LIBRT=1 -DHAVE_LIBM=1 "-DHAVE_NAMESPACES=/**/" "-DF77_FUNC(name,NAME)=name ## _" "-DF77_FUNC_(name,NAME)=name ## _" -DSIZEOF_LONG=4 -DSIZEOF_INT=4 -DSIZEOF_FORTRAN_INTEGER=4 -DCAL_INT=int -DHAVE_PTHREAD=1 "-DWITH_NUMPY=/**/" -D__OSVERSION__=2 "-DOMNIORB=/**/" "-DCORBA_HAVE_POA=/**/" "-DCORBA_ORB_INIT_HAVE_3_ARGS=/**/" "-DCORBA_ORB_INIT_THIRD_ARG=/**/" -I. -I../idl -DOMNIORB_VERSION=4 -D__x86__ -D__linux__ -DCOMP_CORBA_DOUBLE -DCOMP_CORBA_LONG -I/usr/include -I/usr/include/omniORB4 -I/usr/include/COS -DHAVE_SOCKET -I../salome_adm -include SALOMEconfig.h -fPIC -march=i686 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -g -Wparentheses -Wreturn-type -Wunused -pthread -MT libSalomeIDLKernel_la-Calcium_PortsSK.lo -MD -MP -MF .deps/libSalomeIDLKernel_la-Calcium_PortsSK.Tpo -c Calcium_PortsSK.cc  -fPIC -DPIC -o .libs/libSalomeIDLKernel_la-Calcium_PortsSK.o
mv -f .deps/libSalomeIDLKernel_la-Calcium_PortsSK.Tpo .deps/libSalomeIDLKernel_la-Calcium_PortsSK.Plo
/bin/sh ../libtool  --tag=CXX   --mode=compile g++ -DPACKAGE_NAME=\"Salome2\ Project\" -DPACKAGE_TARNAME=\"SalomeKERNEL\" -DPACKAGE_VERSION=\"6.6.0\" -DPACKAGE_STRING=\"Salome2\ Project\ 6.6.0\" -DPACKAGE_BUGREPORT=\"paul.rascle@edf.fr\" -DPACKAGE_URL=\"\" -DPACKAGE=\"SalomeKERNEL\" -DVERSION=\"6.6.0\" -DHAVE_SALOME_CONFIG=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_LIBDL=1 -DHAVE_LIBRT=1 -DHAVE_LIBM=1 -DHAVE_NAMESPACES=/\*\*/ -DF77_FUNC\(name,NAME\)=name\ ##\ _ -DF77_FUNC_\(name,NAME\)=name\ ##\ _ -DSIZEOF_LONG=4 -DSIZEOF_INT=4 -DSIZEOF_FORTRAN_INTEGER=4 -DCAL_INT=int -DHAVE_PTHREAD=1 -DWITH_NUMPY=/\*\*/ -D__OSVERSION__=2 -DOMNIORB=/\*\*/ -DCORBA_HAVE_POA=/\*\*/ -DCORBA_ORB_INIT_HAVE_3_ARGS=/\*\*/ -DCORBA_ORB_INIT_THIRD_ARG=/\*\*/ -I.  -I../idl -DOMNIORB_VERSION=4 -D__x86__ -D__linux__ -DCOMP_CORBA_DOUBLE -DCOMP_CORBA_LONG -I/usr/include -I/usr/include/omniORB4 -I/usr/include/COS -DHAVE_SOCKET   -I../salome_adm -include SALOMEconfig.h -fPIC -march=i686 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -g -Wparentheses -Wreturn-type -Wunused -pthread -MT libSalomeIDLKernel_la-Calcium_PortsDynSK.lo -MD -MP -MF .deps/libSalomeIDLKernel_la-Calcium_PortsDynSK.Tpo -c -o libSalomeIDLKernel_la-Calcium_PortsDynSK.lo `test -f 'Calcium_PortsDynSK.cc' || echo './'`Calcium_PortsDynSK.cc
libtool: compile:  g++ "-DPACKAGE_NAME=\"Salome2 Project\"" -DPACKAGE_TARNAME=\"SalomeKERNEL\" -DPACKAGE_VERSION=\"6.6.0\" "-DPACKAGE_STRING=\"Salome2 Project 6.6.0\"" -DPACKAGE_BUGREPORT=\"paul.rascle@edf.fr\" -DPACKAGE_URL=\"\" -DPACKAGE=\"SalomeKERNEL\" -DVERSION=\"6.6.0\" "-DHAVE_SALOME_CONFIG=/**/" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_LIBDL=1 -DHAVE_LIBRT=1 -DHAVE_LIBM=1 "-DHAVE_NAMESPACES=/**/" "-DF77_FUNC(name,NAME)=name ## _" "-DF77_FUNC_(name,NAME)=name ## _" -DSIZEOF_LONG=4 -DSIZEOF_INT=4 -DSIZEOF_FORTRAN_INTEGER=4 -DCAL_INT=int -DHAVE_PTHREAD=1 "-DWITH_NUMPY=/**/" -D__OSVERSION__=2 "-DOMNIORB=/**/" "-DCORBA_HAVE_POA=/**/" "-DCORBA_ORB_INIT_HAVE_3_ARGS=/**/" "-DCORBA_ORB_INIT_THIRD_ARG=/**/" -I. -I../idl -DOMNIORB_VERSION=4 -D__x86__ -D__linux__ -DCOMP_CORBA_DOUBLE -DCOMP_CORBA_LONG -I/usr/include -I/usr/include/omniORB4 -I/usr/include/COS -DHAVE_SOCKET -I../salome_adm -include SALOMEconfig.h -fPIC -march=i686 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -g -Wparentheses -Wreturn-type -Wunused -pthread -MT libSalomeIDLKernel_la-Calcium_PortsDynSK.lo -MD -MP -MF .deps/libSalomeIDLKernel_la-Calcium_PortsDynSK.Tpo -c Calcium_PortsDynSK.cc  -fPIC -DPIC -o .libs/libSalomeIDLKernel_la-Calcium_PortsDynSK.o
mv -f .deps/libSalomeIDLKernel_la-Calcium_PortsDynSK.Tpo .deps/libSalomeIDLKernel_la-Calcium_PortsDynSK.Plo
/bin/sh ../libtool  --tag=CXX   --mode=link g++ -I../salome_adm -include SALOMEconfig.h -fPIC -march=i686 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -g -Wparentheses -Wreturn-type -Wunused -pthread -no-undefined -version-info=0:0:0 -Wl,-O1,--sort-common,--as-needed,-z,relro -Xlinker -enable-new-dtags -o libSalomeIDLKernel.la -rpath /usr/lib/salome libSalomeIDLKernel_la-SALOME_ExceptionSK.lo libSalomeIDLKernel_la-SALOME_CommSK.lo libSalomeIDLKernel_la-SALOME_ModuleCatalogSK.lo libSalomeIDLKernel_la-SALOME_RessourcesCatalogSK.lo libSalomeIDLKernel_la-SALOMEDSSK.lo libSalomeIDLKernel_la-SALOMEDS_AttributesSK.lo libSalomeIDLKernel_la-SALOME_ComponentSK.lo libSalomeIDLKernel_la-SALOME_ContainerManagerSK.lo libSalomeIDLKernel_la-SALOME_TestComponentSK.lo libSalomeIDLKernel_la-SALOME_RegistrySK.lo libSalomeIDLKernel_la-LoggerSK.lo libSalomeIDLKernel_la-SALOME_GenericObjSK.lo libSalomeIDLKernel_la-SALOME_TypesSK.lo libSalomeIDLKernel_la-SALOME_SessionSK.lo libSalomeIDLKernel_la-SALOME_TestModuleCatalogSK.lo libSalomeIDLKernel_la-nstestSK.lo libSalomeIDLKernel_la-DSC_EnginesSK.lo libSalomeIDLKernel_la-SALOME_PortsSK.lo libSalomeIDLKernel_la-SALOME_PyNodeSK.lo libSalomeIDLKernel_la-Calcium_PortsSK.lo libSalomeIDLKernel_la-Palm_PortsSK.lo libSalomeIDLKernel_la-SALOME_PACOExtensionSK.lo libSalomeIDLKernel_la-SALOME_ParamPortsSK.lo libSalomeIDLKernel_la-SALOME_ParametricSK.lo libSalomeIDLKernel_la-SALOME_MPIObjectSK.lo  libSalomeIDLKernel_la-SALOME_PortsDynSK.lo libSalomeIDLKernel_la-Calcium_PortsDynSK.lo libSalomeIDLKernel_la-SALOME_ContainerManagerDynSK.lo libSalomeIDLKernel_la-SALOME_CommDynSK.lo libSalomeIDLKernel_la-SALOME_RegistryDynSK.lo libSalomeIDLKernel_la-SALOME_ModuleCatalogDynSK.lo libSalomeIDLKernel_la-SALOMEDSDynSK.lo libSalomeIDLKernel_la-SALOME_SessionDynSK.lo libSalomeIDLKernel_la-SALOME_RessourcesCatalogDynSK.lo libSalomeIDLKernel_la-DSC_EnginesDynSK.lo libSalomeIDLKernel_la-SALOME_ComponentDynSK.lo libSalomeIDLKernel_la-SALOME_GenericObjDynSK.lo libSalomeIDLKernel_la-SALOME_TypesDynSK.lo libSalomeIDLKernel_la-Palm_PortsDynSK.lo libSalomeIDLKernel_la-SALOME_ExceptionDynSK.lo libSalomeIDLKernel_la-SALOMEDS_AttributesDynSK.lo libSalomeIDLKernel_la-LoggerDynSK.lo libSalomeIDLKernel_la-SALOME_PACOExtensionDynSK.lo libSalomeIDLKernel_la-SALOME_ParamPortsDynSK.lo libSalomeIDLKernel_la-SALOME_PyNodeDynSK.lo libSalomeIDLKernel_la-SALOME_ParametricDynSK.lo libSalomeIDLKernel_la-SALOME_MPIObjectDynSK.lo  -lomniORB4 -lomniDynamic4 -lCOS4 -lCOSDynamic4 -lomnithread  -lnsl -lm -lrt -ldl  
libtool: link: rm -fr  .libs/libSalomeIDLKernel.la .libs/libSalomeIDLKernel.lai .libs/libSalomeIDLKernel.so .libs/libSalomeIDLKernel.so.0 .libs/libSalomeIDLKernel.so.0.0.0
libtool: link: hack_libtool  -fPIC -DPIC -shared -nostdlib /usr/lib/gcc/i686-pc-linux-gnu/4.8.0/../../../crti.o /usr/lib/gcc/i686-pc-linux-gnu/4.8.0/crtbeginS.o  .libs/libSalomeIDLKernel_la-SALOME_ExceptionSK.o .libs/libSalomeIDLKernel_la-SALOME_CommSK.o .libs/libSalomeIDLKernel_la-SALOME_ModuleCatalogSK.o .libs/libSalomeIDLKernel_la-SALOME_RessourcesCatalogSK.o .libs/libSalomeIDLKernel_la-SALOMEDSSK.o .libs/libSalomeIDLKernel_la-SALOMEDS_AttributesSK.o .libs/libSalomeIDLKernel_la-SALOME_ComponentSK.o .libs/libSalomeIDLKernel_la-SALOME_ContainerManagerSK.o .libs/libSalomeIDLKernel_la-SALOME_TestComponentSK.o .libs/libSalomeIDLKernel_la-SALOME_RegistrySK.o .libs/libSalomeIDLKernel_la-LoggerSK.o .libs/libSalomeIDLKernel_la-SALOME_GenericObjSK.o .libs/libSalomeIDLKernel_la-SALOME_TypesSK.o .libs/libSalomeIDLKernel_la-SALOME_SessionSK.o .libs/libSalomeIDLKernel_la-SALOME_TestModuleCatalogSK.o .libs/libSalomeIDLKernel_la-nstestSK.o .libs/libSalomeIDLKernel_la-DSC_EnginesSK.o .libs/libSalomeIDLKernel_la-SALOME_PortsSK.o .libs/libSalomeIDLKernel_la-SALOME_PyNodeSK.o .libs/libSalomeIDLKernel_la-Calcium_PortsSK.o .libs/libSalomeIDLKernel_la-Palm_PortsSK.o .libs/libSalomeIDLKernel_la-SALOME_PACOExtensionSK.o .libs/libSalomeIDLKernel_la-SALOME_ParamPortsSK.o .libs/libSalomeIDLKernel_la-SALOME_ParametricSK.o .libs/libSalomeIDLKernel_la-SALOME_MPIObjectSK.o .libs/libSalomeIDLKernel_la-SALOME_PortsDynSK.o .libs/libSalomeIDLKernel_la-Calcium_PortsDynSK.o .libs/libSalomeIDLKernel_la-SALOME_ContainerManagerDynSK.o .libs/libSalomeIDLKernel_la-SALOME_CommDynSK.o .libs/libSalomeIDLKernel_la-SALOME_RegistryDynSK.o .libs/libSalomeIDLKernel_la-SALOME_ModuleCatalogDynSK.o .libs/libSalomeIDLKernel_la-SALOMEDSDynSK.o .libs/libSalomeIDLKernel_la-SALOME_SessionDynSK.o .libs/libSalomeIDLKernel_la-SALOME_RessourcesCatalogDynSK.o .libs/libSalomeIDLKernel_la-DSC_EnginesDynSK.o .libs/libSalomeIDLKernel_la-SALOME_ComponentDynSK.o .libs/libSalomeIDLKernel_la-SALOME_GenericObjDynSK.o .libs/libSalomeIDLKernel_la-SALOME_TypesDynSK.o .libs/libSalomeIDLKernel_la-Palm_PortsDynSK.o .libs/libSalomeIDLKernel_la-SALOME_ExceptionDynSK.o .libs/libSalomeIDLKernel_la-SALOMEDS_AttributesDynSK.o .libs/libSalomeIDLKernel_la-LoggerDynSK.o .libs/libSalomeIDLKernel_la-SALOME_PACOExtensionDynSK.o .libs/libSalomeIDLKernel_la-SALOME_ParamPortsDynSK.o .libs/libSalomeIDLKernel_la-SALOME_PyNodeDynSK.o .libs/libSalomeIDLKernel_la-SALOME_ParametricDynSK.o .libs/libSalomeIDLKernel_la-SALOME_MPIObjectDynSK.o   -lomniORB4 -lomniDynamic4 -lCOS4 -lCOSDynamic4 -lomnithread -lnsl -lrt -ldl -L/usr/lib/gcc/i686-pc-linux-gnu/4.8.0 -L/usr/lib/gcc/i686-pc-linux-gnu/4.8.0/../../.. -lstdc++ -lm -lc -lgcc_s /usr/lib/gcc/i686-pc-linux-gnu/4.8.0/crtendS.o /usr/lib/gcc/i686-pc-linux-gnu/4.8.0/../../../crtn.o  -march=i686 -mtune=generic -O2 -pthread -Wl,-O1 -Wl,--sort-common -Wl,--as-needed -Wl,-z -Wl,relro -Wl,-enable-new-dtags   -pthread -Wl,-soname -Wl,libSalomeIDLKernel.so.0 -o .libs/libSalomeIDLKernel.so.0.0.0
libtool: link: (cd ".libs" && rm -f "libSalomeIDLKernel.so.0" && ln -s "libSalomeIDLKernel.so.0.0.0" "libSalomeIDLKernel.so.0")
libtool: link: (cd ".libs" && rm -f "libSalomeIDLKernel.so" && ln -s "libSalomeIDLKernel.so.0.0.0" "libSalomeIDLKernel.so")
libtool: link: ( cd ".libs" && rm -f "libSalomeIDLKernel.la" && ln -s "../libSalomeIDLKernel.la" "libSalomeIDLKernel.la" )
make[2]: Leaving directory `/home/shor-ty/Build/salome/src/KERNEL_SRC/idl'
make[1]: Leaving directory `/home/shor-ty/Build/salome/src/KERNEL_SRC/idl'
Making all in src
make[1]: Entering directory `/home/shor-ty/Build/salome/src/KERNEL_SRC/src'
Making all in Basics
make[2]: Entering directory `/home/shor-ty/Build/salome/src/KERNEL_SRC/src/Basics'
make[2]: Für das Ziel »all« ist nichts zu tun.
make[2]: Leaving directory `/home/shor-ty/Build/salome/src/KERNEL_SRC/src/Basics'
Making all in SALOMELocalTrace
make[2]: Entering directory `/home/shor-ty/Build/salome/src/KERNEL_SRC/src/SALOMELocalTrace'
make[2]: Für das Ziel »all« ist nichts zu tun.
make[2]: Leaving directory `/home/shor-ty/Build/salome/src/KERNEL_SRC/src/SALOMELocalTrace'
Making all in HDFPersist
make[2]: Entering directory `/home/shor-ty/Build/salome/src/KERNEL_SRC/src/HDFPersist'
make[2]: Für das Ziel »all« ist nichts zu tun.
make[2]: Leaving directory `/home/shor-ty/Build/salome/src/KERNEL_SRC/src/HDFPersist'
Making all in KERNEL_PY
make[2]: Entering directory `/home/shor-ty/Build/salome/src/KERNEL_SRC/src/KERNEL_PY'
Making all in kernel
make[3]: Entering directory `/home/shor-ty/Build/salome/src/KERNEL_SRC/src/KERNEL_PY/kernel'
Making all in parametric
make[4]: Entering directory `/home/shor-ty/Build/salome/src/KERNEL_SRC/src/KERNEL_PY/kernel/parametric'
make[4]: Für das Ziel »all« ist nichts zu tun.
make[4]: Leaving directory `/home/shor-ty/Build/salome/src/KERNEL_SRC/src/KERNEL_PY/kernel/parametric'
make[4]: Entering directory `/home/shor-ty/Build/salome/src/KERNEL_SRC/src/KERNEL_PY/kernel'
make[4]: Für das Ziel »all-am« ist nichts zu tun.
make[4]: Leaving directory `/home/shor-ty/Build/salome/src/KERNEL_SRC/src/KERNEL_PY/kernel'
make[3]: Leaving directory `/home/shor-ty/Build/salome/src/KERNEL_SRC/src/KERNEL_PY/kernel'
make[3]: Entering directory `/home/shor-ty/Build/salome/src/KERNEL_SRC/src/KERNEL_PY'
make[3]: Für das Ziel »all-am« ist nichts zu tun.
make[3]: Leaving directory `/home/shor-ty/Build/salome/src/KERNEL_SRC/src/KERNEL_PY'
make[2]: Leaving directory `/home/shor-ty/Build/salome/src/KERNEL_SRC/src/KERNEL_PY'
Making all in DF
make[2]: Entering directory `/home/shor-ty/Build/salome/src/KERNEL_SRC/src/DF'
/bin/sh ../../libtool  --tag=CXX   --mode=compile g++ -DPACKAGE_NAME=\"Salome2\ Project\" -DPACKAGE_TARNAME=\"SalomeKERNEL\" -DPACKAGE_VERSION=\"6.6.0\" -DPACKAGE_STRING=\"Salome2\ Project\ 6.6.0\" -DPACKAGE_BUGREPORT=\"paul.rascle@edf.fr\" -DPACKAGE_URL=\"\" -DPACKAGE=\"SalomeKERNEL\" -DVERSION=\"6.6.0\" -DHAVE_SALOME_CONFIG=/\*\*/ -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_LIBDL=1 -DHAVE_LIBRT=1 -DHAVE_LIBM=1 -DHAVE_NAMESPACES=/\*\*/ -DF77_FUNC\(name,NAME\)=name\ ##\ _ -DF77_FUNC_\(name,NAME\)=name\ ##\ _ -DSIZEOF_LONG=4 -DSIZEOF_INT=4 -DSIZEOF_FORTRAN_INTEGER=4 -DCAL_INT=int -DHAVE_PTHREAD=1 -DWITH_NUMPY=/\*\*/ -D__OSVERSION__=2 -DOMNIORB=/\*\*/ -DCORBA_HAVE_POA=/\*\*/ -DCORBA_ORB_INIT_HAVE_3_ARGS=/\*\*/ -DCORBA_ORB_INIT_THIRD_ARG=/\*\*/ -I.   -DHAVE_SOCKET   -I../../salome_adm -include SALOMEconfig.h -march=i686 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -g -Wparentheses -Wreturn-type -Wunused -pthread -MT libDF_la-DF_Attribute.lo -MD -MP -MF .deps/libDF_la-DF_Attribute.Tpo -c -o libDF_la-DF_Attribute.lo `test -f 'DF_Attribute.cxx' || echo './'`DF_Attribute.cxx
libtool: compile:  g++ "-DPACKAGE_NAME=\"Salome2 Project\"" -DPACKAGE_TARNAME=\"SalomeKERNEL\" -DPACKAGE_VERSION=\"6.6.0\" "-DPACKAGE_STRING=\"Salome2 Project 6.6.0\"" -DPACKAGE_BUGREPORT=\"paul.rascle@edf.fr\" -DPACKAGE_URL=\"\" -DPACKAGE=\"SalomeKERNEL\" -DVERSION=\"6.6.0\" "-DHAVE_SALOME_CONFIG=/**/" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 -DLT_OBJDIR=\".libs/\" -DHAVE_LIBDL=1 -DHAVE_LIBRT=1 -DHAVE_LIBM=1 "-DHAVE_NAMESPACES=/**/" "-DF77_FUNC(name,NAME)=name ## _" "-DF77_FUNC_(name,NAME)=name ## _" -DSIZEOF_LONG=4 -DSIZEOF_INT=4 -DSIZEOF_FORTRAN_INTEGER=4 -DCAL_INT=int -DHAVE_PTHREAD=1 "-DWITH_NUMPY=/**/" -D__OSVERSION__=2 "-DOMNIORB=/**/" "-DCORBA_HAVE_POA=/**/" "-DCORBA_ORB_INIT_HAVE_3_ARGS=/**/" "-DCORBA_ORB_INIT_THIRD_ARG=/**/" -I. -DHAVE_SOCKET -I../../salome_adm -include SALOMEconfig.h -march=i686 -mtune=generic -O2 -pipe -fstack-protector --param=ssp-buffer-size=4 -D_FORTIFY_SOURCE=2 -g -Wparentheses -Wreturn-type -Wunused -pthread -MT libDF_la-DF_Attribute.lo -MD -MP -MF .deps/libDF_la-DF_Attribute.Tpo -c DF_Attribute.cxx  -fPIC -DPIC -o .libs/libDF_la-DF_Attribute.o
In file included from DF_Attribute.cxx:20:0:
DF_definitions.hxx: In constructor 'df_shared_ptr<T>::df_shared_ptr(const df_shared_ptr<Y>&)':
DF_definitions.hxx:50:30: error: 'dynamic_cast_tag' is not a member of 'boost::detail'
       boost::shared_ptr<T>(r,boost::detail::dynamic_cast_tag())
                              ^
make[2]: *** [libDF_la-DF_Attribute.lo] Fehler 1
make[2]: Leaving directory `/home/shor-ty/Build/salome/src/KERNEL_SRC/src/DF'
make[1]: *** [all-recursive] Fehler 1
make[1]: Leaving directory `/home/shor-ty/Build/salome/src/KERNEL_SRC/src'
make: *** [all-recursive] Fehler 1
=> FEHLER: Ein Fehler geschah in build().
Breche ab ...

I have a problem with the boost::detail function.
Is that problem known ?

Can someone help me?

Last edited by TobiHolzmann (2013-04-04 01:42:27)

Offline

#15 2013-04-10 21:01:15

Xyne
Administrator/PM
Registered: 2008-08-03
Posts: 6,963
Website

Re: SALOME: git packages for all modules

I took a look at this a few days ago but never got around to replying. There is indeed a problem boost and I have not yet had the time (or the knowledge) to fix it.

*sigh*

This software looks great on their homepage. It's really too bad that their attitude is "pay us for support or go fuck yourself, because we won't even answer simple questions that would benefit the entire community".


My Arch Linux StuffForum EtiquetteCommunity Ethos - Arch is not for everyone

Offline

#16 2013-04-16 19:27:14

TobiHolzmann
Member
Registered: 2013-04-04
Posts: 5
Website

Re: SALOME: git packages for all modules

Hi Xyne,

nice to see that you made a replay.

Did you get the same error ?

Hmmm ... to install or execute the binaries is not possible as well for me sad ...

How could I resolve that problem?

I am good in programming but to see through a new code and stuff like that is not possible for me at the moment.

Its a pitty that this software do not works in ARCH LINUX as in Suse or sth. like that!

Hope to hear from you or a other guy that is solving that problem!

Tobi

Offline

#17 2013-04-20 14:40:21

TobiHolzmann
Member
Registered: 2013-04-04
Posts: 5
Website

Re: SALOME: git packages for all modules

Hi,

your Link to the PKGBUILD is not avaiable at the moment!
Can you please check it out?

Thanks Tobi

Offline

#18 2013-04-20 16:19:44

TobiHolzmann
Member
Registered: 2013-04-04
Posts: 5
Website

Re: SALOME: git packages for all modules

Okay now everything is working smile

-> Download binaries and use python2 for Salome Meca.

In my case the error occured from the ASTER CODE.

Therefor I had to install net-tools and start netstat -an manually.

Everything is working now!

Offline

#19 2013-04-20 18:27:46

Xyne
Administrator/PM
Registered: 2008-08-03
Posts: 6,963
Website

Re: SALOME: git packages for all modules

@TobiHolzmann
What do you mean y "download binaries and use python2" for Salome Meca"?


My Arch Linux StuffForum EtiquetteCommunity Ethos - Arch is not for everyone

Offline

#20 2013-04-20 18:44:58

tapia
Member
Registered: 2013-03-13
Posts: 56

Re: SALOME: git packages for all modules

It is the same that I did in order to be able to use Salome. Since it was't posible for me to compile Salome in Arch, I downloaded de Linux binaries from the webpage of Salome. But since Arch uses python3 as default python version, you have to tell Salome to use python2, because that is the version Salome is expecting. I did this: http://www.salome-platform.org/forum/fo … #108026602

It is clearly not optimal, but it works.

Offline

#21 2013-04-21 19:48:35

TobiHolzmann
Member
Registered: 2013-04-04
Posts: 5
Website

Re: SALOME: git packages for all modules

Hi,

like topia told you, you have to download the "universal binaries" in the download section and follow the instructions given in the link topia posted:

$ mkdir ~/bin
Then add a symlink 'python' to python2 in it.

$ ln -s /usr/bin/python2 ~/bin/python
Finally put the new folder at the beginning of your PATH 

$ PATH=~/bin:$PATH ./runAppli

A better way is to set the path variable into your ~.bashrc file so you do not have to set it every time.
With that symbolic link salome uses python2 instead of python3.

Additionally it could be possible that you get errors when running /runAppli.
Therefor you should  start netstat -na manually (only once) to get Salome working.

Tobi

Offline

#22 2013-08-14 04:16:58

tapia
Member
Registered: 2013-03-13
Posts: 56

Re: SALOME: git packages for all modules

I've been trying again to compile this, but now I'm getting a problem with omniORBpy. I tried to install it from AUR, but there is a problem, because it tries to overwrite files that belong to pyorbit.

All other dependencies are met.

============================================================
Summary
============================================================

--- General mandatory products - Light configuration:
           cc : yes
      threads : yes
       python : yes
         swig : yes
         hdf5 : yes
       libxml : yes

--- CORBA mandatory products - default configuration:
      omniORB : yes
    omniORBpy : no
        boost : yes
FATAL ERROR: some mandatory products are missing.
Installing the missing products is required before running the configure script.
==> ERROR: Se produjo un error en build().
    Cancelando...

Edit:
Forget this. I just had to uninstall a couple of things and the problem was gone. Now I have the same problem as always: boost. I hope someone can solve it sometime, because I'm having problems installing the binaries provided in the homepage for the latest version (7.2).

Last edited by tapia (2013-08-14 16:34:33)

Offline

#23 2013-10-27 18:21:30

mauritiusdadd
Member
From: Benevento, Italy
Registered: 2013-10-27
Posts: 776

Re: SALOME: git packages for all modules

Hi,
first of all this is my first post so hello to evryone and forgive me for my bad english.

After some attempts, I've finally succeded to build salome-kernel using Xyne's PKGBUILD by applying a patch found on the web.

These are the links to the modified PKGBUILD and the patch file.

I hope this helps smile


About me - github

-- When you have eliminated the impossible, whatever remains, however improbable, must be the truth -- Spock | Sherlock Holmes

Offline

#24 2013-10-27 22:43:02

Xyne
Administrator/PM
Registered: 2008-08-03
Posts: 6,963
Website

Re: SALOME: git packages for all modules

@mauritiusdadd
Thanks. I have updated the PKGBUILD to include the patch along with other changes to conform to the new VCS packaging style. I haven't tested the package itself yet.

I have also tested the cmake build setup with the new V7_main branch, but it still doesn't handle Python compilation in the $pkgdir (it's still hardcoded to absolute system paths). roll


My Arch Linux StuffForum EtiquetteCommunity Ethos - Arch is not for everyone

Offline

#25 2013-10-28 00:15:37

tapia
Member
Registered: 2013-03-13
Posts: 56

Re: SALOME: git packages for all modules

I tried to compile using this PKGBUILD, but i got this error:

==> GIT checkout done or server timeout
==> Patching...
patching file src/DF/DF_definitions.hxx
Hunk #1 FAILED at 46.
1 out of 1 hunk FAILED -- saving rejects to file src/DF/DF_definitions.hxx.rej
patching file src/SALOMEDSClient/SALOMEDSClient_definitions.hxx
Hunk #1 FAILED at 47.
1 out of 1 hunk FAILED -- saving rejects to file src/SALOMEDSClient/SALOMEDSClient_definitions.hxx.rej
==> ERROR: A failure occurred in build().
    Aborting...

PS: Thanks for this patch wink

Last edited by tapia (2013-10-28 00:16:26)

Offline

Board footer

Powered by FluxBB