CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Software User Forums > OpenFOAM > OpenFOAM Installation

critical error during installation of openfoam

Register Blogs Members List Search Today's Posts Mark Forums Read

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   May 26, 2010, 14:05
Default critical error during installation of openfoam
  #1
Member
 
Fabio Malizia
Join Date: May 2010
Location: Leuven (Belgium)
Posts: 51
Rep Power: 15
Fabio88 is on a distinguished road
Hello
I'm a new user, probably my problems are very easy to solve but it is the third time I try to install open foam but with any success

I format my pc and re install ubuntu 10.04, 64 bit versions

I start with the decompression of the 5 files and copy the line indicated in readme file in the home/bashrc

I executed the foam installationtest and it show me this:

Code:
Third party software
-------------------------------------------------------------------------------
Software Version   Location 
-------------------------------------------------------------------------------
WARNING: gcc version does not match gcc supplied with this release of OpenFOAM
         Supplied version: 4.3.3
         User version    : 4.4.3
         Minimum required: 4.3.1

gcc      4.4.3    
WARNING:  Conflicting installations:
          OpenFOAM settings        : /home/fabio/OpenFOAM/ThirdParty-1.6/gcc-4.3.3/platforms/linux64/bin/gcc
          current path             : /usr/bin/gcc
          CRITICAL ERROR

gzip     1.3.12    /bin/gzip                                                
tar      1.22      /bin/tar                                                 
icoFoam  1.6       .../OpenFOAM-1.6/applications/bin/linux64GccDPOpt/icoFoam
can I do??


thanks a lot

Fabio
Fabio88 is offline   Reply With Quote

Old   May 27, 2010, 09:09
Default
  #2
Senior Member
 
Gijsbert Wierink
Join Date: Mar 2009
Posts: 383
Rep Power: 18
gwierink is on a distinguished road
Hi Fabio,

The error appears probably because in OpenFOAM's settings the system compiler is selected (gcc-4.4.3, living in /usr/bin/gcc). In the file /home/fabio/OpenFOAM/OpenFOAM-1.6/etc/settings.sh you can find the settings for compilers (lines 111-115):

Code:
# Select compiler installation
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# compilerInstall = OpenFOAM | System
#compilerInstall=OpenFOAM
compilerInstall=System
For most OpenFOAM use the installation works fine with or without this error (my experience anyways ... )
__________________
Regards, Gijs
gwierink is offline   Reply With Quote

Old   May 27, 2010, 17:27
Default
  #3
Member
 
Fabio Malizia
Join Date: May 2010
Location: Leuven (Belgium)
Posts: 51
Rep Power: 15
Fabio88 is on a distinguished road
thank you...
however I have
Code:
# Select compiler installation
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# compilerInstall = OpenFOAM | System
compilerInstall=OpenFOAM
without your last line and I have this in line 95-98...


it's the same thing?
or you suggest me to check other things?


thanks


Fabio
Fabio88 is offline   Reply With Quote

Old   May 27, 2010, 21:04
Default
  #4
Retired Super Moderator
 
Bruno Santos
Join Date: Mar 2009
Location: Lisbon, Portugal
Posts: 10,974
Blog Entries: 45
Rep Power: 128
wyldckat is a name known to allwyldckat is a name known to allwyldckat is a name known to allwyldckat is a name known to allwyldckat is a name known to allwyldckat is a name known to all
Greetings Fabio,

OK, lets review the steps you took:
  1. I assume that the 5 files you speak of are the ones listed here: http://www.openfoam.com/download/linux64.php
  2. how exactly did you extract the 5 files? Did you download the 5 files into $HOME/OpenFOAM and then ran something like this?
    Code:
    cd $HOME/OpenFOAM
    tar xzf OpenFOAM-1.6.General.gtgz
    tar xzf OpenFOAM-1.6.linux64GccDPOpt.gtgz
    tar xzf OpenFOAM-1.6.linux64GccSPOpt.gtgz
    tar xzf ThirdParty-1.6.General.gtgz
    tar xzf ThirdParty-1.6.linux64Gcc.gtgz
  3. You edited $HOME/.bashrc and added this to the end of the file:
    Code:
    . $HOME/OpenFOAM/OpenFOAM-1.6/etc/bashrc
    Correct? You didn't miss that space between the dot and $HOME, or did you?
  4. Now, before running foamInstallationTest, start a new terminal. Now run foamInstallationTest on the new terminal. You should no longer see any critical errors.
Now, in order for things to work properly in Ubuntu 10.04, you should also run the following lines of code in the terminal:
Code:
cd $HOME/OpenFOAM/ThirdParty-1.6/gcc-4.3.3/platforms/linux64/lib64
mv libstdc++.so.6 libstdc++.so.6.orig
ln -s `locate libstdc++.so.6.0 | grep "^/usr/lib" | head -n 1` libstdc++.so.6
mv libgcc_s.so.1 libgcc_s.so.1.orig
ln -s `locate libgcc_s.so. | grep "^/lib" | head -n 1` libgcc_s.so.1
You'll only need to run it once. It will link two libraries of gcc 4.3.3 to the Ubuntu's up-to-date library versions, so things can work more smoothly.

Finally, ParaView/paraFoam will not work The pre-built version is too incompatible with the latest Ubuntu 10.04. You'll have two choices:
  • You either have to rebuild ParaView;
  • Or you just remove the pre-built ParaView, by running:
    Code:
    rm -rf $HOME/OpenFOAM/ThirdParty-1.6/paraview-3.6.1/platforms/*
    Then install the Ubuntu's version of ParaView:
    Code:
    sudo apt-get install paraview
    Then instead of running paraFoam, use:
    Code:
    foamToVTK
    cd VTK
    paraview

In case you want to rebuild OpenFOAM and would like for paraFoam to work, then try installing OpenFOAM 1.6.x using this script: http://code.google.com/p/openfoam-ubuntu/
This way you'll get the latest version of OpenFOAM 1.6.x and should get ParaView up and running. If you have difficulties using it, see this thread: OpenFOAM 1.6.x Installer for Ubuntu
Edit: the following post has step by step instructions on how to use the script: Installing OpenFOAM 1.6 on Ubuntu 10.4 post #6

Best regards,
Bruno
__________________

Last edited by wyldckat; May 27, 2010 at 21:25. Reason: Added link to a thread with step-by-step
wyldckat is offline   Reply With Quote

Old   May 28, 2010, 03:48
Default
  #5
Member
 
Fabio Malizia
Join Date: May 2010
Location: Leuven (Belgium)
Posts: 51
Rep Power: 15
Fabio88 is on a distinguished road
thank you very much
I've done all ...now I'm waiting, I follow the last link you gave me for the installation of OF1.6x
I hope it will go well!!!

however thank you againg
Fabio88 is offline   Reply With Quote

Old   May 28, 2010, 09:14
Default
  #6
Member
 
Fabio Malizia
Join Date: May 2010
Location: Leuven (Belgium)
Posts: 51
Rep Power: 15
Fabio88 is on a distinguished road
there is a problem:
Code:
Third party software
-------------------------------------------------------------------------------
Software Version   Location 
-------------------------------------------------------------------------------
WARNING: gcc version does not match gcc supplied with this release of OpenFOAM
         Supplied version: 4.3.3
         User version    : 4.4.3
         Minimum required: 4.3.1

gcc      4.4.3     /usr/bin/gcc                                             
gzip     1.3.12    /bin/gzip                                                
tar      1.22      /bin/tar                                                 
icoFoam  1.6.x     ...penFOAM-1.6.x/applications/bin/linux64GccDPOpt/icoFoam
I find some others users with the same problem...

for example:
http://www.cfd-online.com/Forums/ope...c-4-4-1-a.html


I follow this or you suggest me other?

thanks

Fabio
Fabio88 is offline   Reply With Quote

Old   May 28, 2010, 22:49
Default
  #7
Retired Super Moderator
 
Bruno Santos
Join Date: Mar 2009
Location: Lisbon, Portugal
Posts: 10,974
Blog Entries: 45
Rep Power: 128
wyldckat is a name known to allwyldckat is a name known to allwyldckat is a name known to allwyldckat is a name known to allwyldckat is a name known to allwyldckat is a name known to all
Greetings Fabio,

Quote:
Originally Posted by Fabio88 View Post
there is a problem:
Code:
(...)
WARNING: gcc version does not match gcc supplied with this release of OpenFOAM
(...)
No need to worry, since it's just a warning, not a "CRITICAL ERROR" like in your first post!

The newly installed OpenFOAM should work now! Just follow the user guide tutorials to see if things are really working or not: Chapter 2 Tutorials

Best regards,
Bruno
__________________
wyldckat is offline   Reply With Quote

Old   May 31, 2010, 14:13
Default
  #8
Member
 
Fabio Malizia
Join Date: May 2010
Location: Leuven (Belgium)
Posts: 51
Rep Power: 15
Fabio88 is on a distinguished road
excuse me I come back only now and I cannot answer before...

In that post I wrote only a part of the message...the other part is the following:

Code:
Build ParaView:
Build process didn't finished with success. Please check the log file for more information:
    /home/fabio/OpenFOAM/ThirdParty-1.6.x/build_ParaView.log
You can post it at this forum thread:
  http://www.cfd-online.com/Forums/openfoam-installation/73805-openfoam-1-6-x-installer-ubuntu.html

You can also verify that thread for other people who might have had the same problems.
------------------------------------------------------
------------------------------------------------------
ParaView isn't available where it is expected:
  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/platforms/linux64Gcc/bin/paraview
Therefore it isn't possible to proceed with building the plugin PV3FoamReader.
then if it is better post the log file here or in the link written in the terminal?


thank you

Fabio
Fabio88 is offline   Reply With Quote

Old   May 31, 2010, 14:17
Default
  #9
Retired Super Moderator
 
Bruno Santos
Join Date: Mar 2009
Location: Lisbon, Portugal
Posts: 10,974
Blog Entries: 45
Rep Power: 128
wyldckat is a name known to allwyldckat is a name known to allwyldckat is a name known to allwyldckat is a name known to allwyldckat is a name known to allwyldckat is a name known to all
Hi Fabio,

You can post it in any of the threads, whether here or on the other.

Best regards,
Bruno
__________________
wyldckat is offline   Reply With Quote

Old   May 31, 2010, 14:30
Default
  #10
Member
 
Fabio Malizia
Join Date: May 2010
Location: Leuven (Belgium)
Posts: 51
Rep Power: 15
Fabio88 is on a distinguished road
this is the end part of the log file....:

Code:
-- Configuring incomplete, errors occurred!
    Starting make
make: *** No targets specified and no makefile found.  Stop.
Command exited with non-zero status 2
0.01user 0.00system 0:00.00elapsed 333%CPU (0avgtext+0avgdata 4000maxresident)k
0inputs+0outputs (0major+301minor)pagefaults 0swaps
    Done make
    For quicker development, linking lib/paraview-3.6/ -> bin/
    Creating html documentation
make: *** No rule to make target `HTMLDocumentation'.  Stop.
    Installing ParaView to /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/platforms/linux64Gcc
disabled 'make install' for now, just use links
    ---
    Installation complete
    Set environment variables:

        export ParaView_INST_DIR=/home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1
        export ParaView_DIR=/home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/platforms/linux64Gcc
        export PV_PLUGIN_PATH=/home/fabio/OpenFOAM/OpenFOAM-1.6.x/lib/linux64GccDPOpt
        export PATH=$ParaView_DIR/bin:$PATH
    ---
-- Replacing path hard links for $ParaView_DIR
   *.cmake: ###################
-- Replacing path hard links for $ParaView_INST_DIR
   *.cmake: ############################
-- Replacing path hard links for $CMAKE_HOME
   *cmake*: 
-- Replacing path hard links for $WM_COMPILER_DIR
   *cmake*: ##############
done

real    0m39.905s
user    0m23.770s
sys    0m9.450s
Fabio88 is offline   Reply With Quote

Old   May 31, 2010, 14:33
Default
  #11
Retired Super Moderator
 
Bruno Santos
Join Date: Mar 2009
Location: Lisbon, Portugal
Posts: 10,974
Blog Entries: 45
Rep Power: 128
wyldckat is a name known to allwyldckat is a name known to allwyldckat is a name known to allwyldckat is a name known to allwyldckat is a name known to allwyldckat is a name known to all
Unfortunately, the relevant error messages are found somewhere else in the file. You can post a zipped version on this thread, by using the advanced editor mode of the forum.
__________________
wyldckat is offline   Reply With Quote

Old   May 31, 2010, 14:40
Default
  #12
Member
 
Fabio Malizia
Join Date: May 2010
Location: Leuven (Belgium)
Posts: 51
Rep Power: 15
Fabio88 is on a distinguished road
Code:
----
Python information:
    executable     : /usr/bin/python
    version        : 2.6
    include path   : /usr/include/python2.6
    library        : /usr/lib/libpython2.6.so
ParaView_DIR=/home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/platforms/linux64Gcc
----
Configuring paraview-3.6.1 (major version: 3.6)
    MPI    support : false
    Python support : true
    MESA   support : false
    Qt dev support : true
    Source         : /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1
    Target         : /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/platforms/linux64Gcc
----

cmake -DCMAKE_INSTALL_PREFIX:PATH=/home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/platforms/linux64Gcc -DVTK_USE_TK=FALSE -DBUILD_SHARED_LIBS:BOOL=ON -DVTK_USE_RPATH:BOOL=OFF -DCMAKE_BUILD_TYPE:STRING=Release -DPARAVIEW_INSTALL_DEVELOPMENT:BOOL=ON -DPARAVIEW_ENABLE_PYTHON=ON -DPYTHON_INCLUDE_PATH=/usr/include/python2.6 -DPYTHON_LIBRARY=/usr/lib/libpython2.6.so -DPARAVIEW_BUILD_QT_GUI=ON -DQT_QMAKE_EXECUTABLE:FILEPATH=/home/fabio/OpenFOAM/ThirdParty-1.6.x/qt-x11-opensource-src-4.3.5/platforms/linux64GccDPOpt/bin/qmake ../..

----

-- The C compiler identification is GNU
-- The CXX compiler identification is GNU
-- Check for working C compiler: /usr/bin/gcc
-- Check for working C compiler: /usr/bin/gcc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Looking for Q_WS_X11
-- Looking for Q_WS_X11 - found
-- Looking for Q_WS_WIN
-- Looking for Q_WS_WIN - not found.
-- Looking for Q_WS_QWS
-- Looking for Q_WS_QWS - not found.
-- Looking for Q_WS_MAC
-- Looking for Q_WS_MAC - not found.
-- Found Qt-Version 4.3.5
-- Looking for _POSIX_TIMERS
-- Looking for _POSIX_TIMERS - found
-- CTest cannot determine repository type. Please set UPDATE_TYPE to 'cvs' or 'svn'. CTest update will not work.
-- Looking for XOpenDisplay in /usr/lib/libX11.so;/usr/lib/libXext.so
-- Looking for XOpenDisplay in /usr/lib/libX11.so;/usr/lib/libXext.so - found
-- Looking for gethostbyname
-- Looking for gethostbyname - found
-- Looking for connect
-- Looking for connect - found
-- Looking for remove
-- Looking for remove - found
-- Looking for shmat
-- Looking for shmat - found
-- Looking for IceConnectionNumber in ICE
-- Looking for IceConnectionNumber in ICE - found
-- Found X11: /usr/lib/libX11.so
-- Looking for C++ include iosfwd
-- Looking for C++ include iosfwd - found
-- Looking for C++ include iostream.h
-- Looking for C++ include iostream.h - not found
-- Performing Test Support for 64 bit file systems
-- Performing Test Support for 64 bit file systems - Success
-- Looking for sys/types.h
-- Looking for sys/types.h - found
-- Looking for stdint.h
-- Looking for stdint.h - found
-- Looking for stddef.h
-- Looking for stddef.h - found
-- Check size of int
-- Check size of int - done
-- Check size of long
-- Check size of long - done
-- Check size of void*
-- Check size of void* - done
-- Check size of char
-- Check size of char - done
-- Check size of short
-- Check size of short - done
-- Check size of float
-- Check size of float - done
-- Check size of double
-- Check size of double - done
-- Looking for include files CMAKE_HAVE_LIMITS_H
-- Looking for include files CMAKE_HAVE_LIMITS_H - found
-- Looking for include files CMAKE_HAVE_UNISTD_H
-- Looking for include files CMAKE_HAVE_UNISTD_H - found
-- Looking for include files CMAKE_HAVE_PTHREAD_H
-- Looking for include files CMAKE_HAVE_PTHREAD_H - found
-- Looking for include files CMAKE_HAVE_SYS_PRCTL_H
-- Looking for include files CMAKE_HAVE_SYS_PRCTL_H - found
-- Check if the system is big endian
-- Searching 16 bit integer
-- Check size of unsigned short
-- Check size of unsigned short - done
-- Using unsigned short
-- Check if the system is big endian - little endian
-- Looking for pthread_create in pthreads
-- Looking for pthread_create in pthreads - not found
-- Looking for pthread_create in pthread
-- Looking for pthread_create in pthread - found
-- Found Threads: TRUE
-- Looking for C++ include iostream
-- Looking for C++ include iostream - found
-- Check for STD namespace
-- Check for STD namespace - found
-- Check for ANSI scope
-- Check for ANSI scope - found
-- Check for sstream
-- Check for sstream - found
-- Check size of long long
-- Check size of long long - done
-- Check size of __int64
-- Check size of __int64 - failed
-- Checking support for C++ type bool
-- Checking support for C++ type bool -- yes
-- Checking signedness of char
-- Checking signedness of char -- signed
-- Looking for getsockname in socket
-- Looking for getsockname in socket - not found
-- Checking for getsockname with socklen_t
-- Checking for getsockname with socklen_t -- yes
-- Looking for SO_REUSEADDR
-- Looking for SO_REUSEADDR - found
-- Checking support for full template specialization syntax
-- Checking support for full template specialization syntax -- yes
-- Checking support for C++ explicit template instantiation
-- Checking support for C++ explicit template instantiation -- yes
-- Checking ANSI streams end-of-file bug level
-- Checking ANSI streams end-of-file bug level - 0
-- Checking if ostream supports long long
-- Checking if ostream supports long long -- yes
-- Checking if istream supports long long
-- Checking if istream supports long long -- yes
-- Found PythonInterp: /usr/bin/python2.6
-- Found PythonLibs: /usr/lib/libpython2.6.so
-- Checking for Large File Support
-- Checking for Large File Support - yes
-- Checking whether STL classes are in std namespace
-- Checking whether STL classes are in std namespace - yes
-- Checking whether ANSI stream headers are available
-- Checking whether ANSI stream headers are available - yes
-- Checking whether ANSI streams are in std namespace
-- Checking whether ANSI streams are in std namespace - yes
-- Checking whether ANSI string stream is available
-- Checking whether ANSI string stream is available - yes
-- Checking whether header cstddef is available
-- Checking whether header cstddef is available - yes
-- Checking whether stl string has operator!= for char*
-- Checking whether stl string has operator!= for char* - yes
-- Checking whether stl has iterator_traits
-- Checking whether stl has iterator_traits - yes
-- Checking whether stl has standard template allocator
-- Checking whether stl has standard template allocator - yes
-- Checking for rebind member of stl allocator
-- Checking for rebind member of stl allocator - yes
-- Checking for non-standard argument to stl allocator<>::max_size
-- Checking for non-standard argument to stl allocator<>::max_size - no
-- Checking whether stl containers support allocator objects.
-- Checking whether stl containers support allocator objects. - yes
-- Checking whether "<>" is needed for template friends
-- Checking whether "<>" is needed for template friends - yes
-- Checking for member template support
-- Checking for member template support - yes
-- Checking for standard template specialization syntax
-- Checking for standard template specialization syntax - yes
-- Checking whether argument dependent lookup is supported
-- Checking whether argument dependent lookup is supported - yes
-- Checking whether struct stat has st_mtim member
-- Checking whether struct stat has st_mtim member - yes
-- Check size of char
-- Check size of char - done
-- Check size of short
-- Check size of short - done
-- Check size of int
-- Check size of int - done
-- Check size of long
-- Check size of long - done
-- Check size of long long
-- Check size of long long - done
-- Check size of __int64
-- Check size of __int64 - failed
-- Checking whether char is signed
-- Checking whether char is signed - yes
-- Checking whether C compiler has ptrdiff_t in stddef.h
-- Checking whether C compiler has ptrdiff_t in stddef.h - yes
-- Checking whether C compiler has ssize_t in unistd.h
-- Checking whether C compiler has ssize_t in unistd.h - yes
-- Looking for include files HAVE_ASSERT_H
-- Looking for include files HAVE_ASSERT_H - found
-- Looking for include files HAVE_DLFCN_H
-- Looking for include files HAVE_DLFCN_H - found
-- Looking for include files HAVE_FCNTL_H
-- Looking for include files HAVE_FCNTL_H - found
-- Looking for include files HAVE_INTTYPES_H
-- Looking for include files HAVE_INTTYPES_H - found
-- Looking for include files HAVE_LIMITS_H
-- Looking for include files HAVE_LIMITS_H - found
-- Looking for include files HAVE_MALLOC_H
-- Looking for include files HAVE_MALLOC_H - found
-- Looking for include files HAVE_MEMORY_H
-- Looking for include files HAVE_MEMORY_H - found
-- Looking for include files HAVE_STDLIB_H
-- Looking for include files HAVE_STDLIB_H - found
-- Looking for include files HAVE_STRING_H
-- Looking for include files HAVE_STRING_H - found
-- Looking for include files HAVE_STRINGS_H
-- Looking for include files HAVE_STRINGS_H - found
-- Looking for include files HAVE_SYS_STAT_H
-- Looking for include files HAVE_SYS_STAT_H - found
-- Looking for include files HAVE_SYS_TIME_H
-- Looking for include files HAVE_SYS_TIME_H - found
-- Looking for include files HAVE_UNISTD_H
-- Looking for include files HAVE_UNISTD_H - found
-- Looking for include files HAVE_WINDOWS_H
-- Looking for include files HAVE_WINDOWS_H - not found.
-- Looking for include files HAVE_IEEEFP_H
-- Looking for include files HAVE_IEEEFP_H - not found.
-- Looking for floor
-- Looking for floor - not found
-- Looking for getopt
-- Looking for getopt - found
-- Looking for isascii
-- Looking for isascii - found
-- Looking for memmove
-- Looking for memmove - found
-- Looking for memset
-- Looking for memset - found
-- Looking for mmap
-- Looking for mmap - found
-- Looking for pow
-- Looking for pow - not found
-- Looking for sqrt
-- Looking for sqrt - not found
-- Looking for strcasecmp
-- Looking for strcasecmp - found
-- Looking for strchr
-- Looking for strchr - found
-- Looking for strrchr
-- Looking for strrchr - found
-- Looking for strstr
-- Looking for strstr - found
-- Looking for strtol
-- Looking for strtol - found
-- Looking for areroul
-- Looking for areroul - not found
-- Check size of int
-- Check size of int - done
-- Check size of long
-- Check size of long - done
-- Looking for dlopen in dl;
-- Looking for dlopen in dl; - found
-- Looking for shl_load in dld;dl
-- Looking for shl_load in dld;dl - not found
-- Looking for dlopen in dl;-lpthread;dl;m
-- Looking for dlopen in dl;-lpthread;dl;m - found
-- Looking for include files HAVE_STDIO_H
-- Looking for include files HAVE_STDIO_H - found
-- Looking for include files HAVE_NETDB_H
-- Looking for include files HAVE_NETDB_H - found
-- Looking for include files HAVE_SYS_SOCKET_H
-- Looking for include files HAVE_SYS_SOCKET_H - found
-- Looking for include files HAVE_NETINET_IN_H
-- Looking for include files HAVE_NETINET_IN_H - found
-- Looking for include files HAVE_SYS_SELECT_H
-- Looking for include files HAVE_SYS_SELECT_H - found
-- Looking for include files HAVE_TIME_H
-- Looking for include files HAVE_TIME_H - found
-- Looking for include files HAVE_SIGNAL_H
-- Looking for include files HAVE_SIGNAL_H - found
-- Looking for include files HAVE_ERRNO_H
-- Looking for include files HAVE_ERRNO_H - found
-- Looking for include files HAVE_ANSIDECL_H
-- Looking for include files HAVE_ANSIDECL_H - found
-- Looking for include files HAVE_ARPA_INET_H
-- Looking for include files HAVE_ARPA_INET_H - found
-- Looking for include files HAVE_ARPA_NAMESER_H
-- Looking for include files HAVE_ARPA_NAMESER_H - found
-- Looking for include files HAVE_CTYPE_H
-- Looking for include files HAVE_CTYPE_H - found
-- Looking for include files HAVE_DIRENT_H
-- Looking for include files HAVE_DIRENT_H - found
-- Looking for include files HAVE_DL_H
-- Looking for include files HAVE_DL_H - not found.
-- Looking for include files HAVE_FLOAT_H
-- Looking for include files HAVE_FLOAT_H - found
-- Looking for include files HAVE_FP_CLASS_H
-- Looking for include files HAVE_FP_CLASS_H - not found.
-- Looking for include files HAVE_MATH_H
-- Looking for include files HAVE_MATH_H - found
-- Looking for include files HAVE_NAN_H
-- Looking for include files HAVE_NAN_H - not found.
-- Looking for include files HAVE_NDIR_H
-- Looking for include files HAVE_NDIR_H - not found.
-- Looking for include files HAVE_PTHREAD_H
-- Looking for include files HAVE_PTHREAD_H - found
-- Looking for include files HAVE_RESOLV_H
-- Looking for include files HAVE_RESOLV_H - found
-- Looking for include files HAVE_STDARG_H
-- Looking for include files HAVE_STDARG_H - found
-- Looking for include files HAVE_SYS_MMAN_H
-- Looking for include files HAVE_SYS_MMAN_H - found
-- Looking for include files HAVE_SYS_TIMEB_H
-- Looking for include files HAVE_SYS_TIMEB_H - found
-- Looking for finite
-- Looking for finite - found
-- Looking for fpclass
-- Looking for fpclass - not found.
-- Looking for fp_class
-- Looking for fp_class - not found.
-- Looking for fprintf
-- Looking for fprintf - found
-- Looking for ftime
-- Looking for ftime - found
-- Looking for gettimeofday
-- Looking for gettimeofday - found
-- Looking for localtime
-- Looking for localtime - found
-- Looking for printf
-- Looking for printf - found
-- Looking for sscanf
-- Looking for sscanf - found
-- Looking for sprintf
-- Looking for sprintf - found
-- Looking for snprintf
-- Looking for snprintf - found
-- Looking for signal
-- Looking for signal - found
-- Looking for strdup
-- Looking for strdup - found
-- Looking for strndup
-- Looking for strndup - found
-- Looking for strerror
-- Looking for strerror - found
-- Looking for strftime
-- Looking for strftime - found
-- Looking for stat
-- Looking for stat - found
-- Looking for _stat
-- Looking for _stat - not found.
-- Looking for vfprintf
-- Looking for vfprintf - found
-- Looking for vsnprintf
-- Looking for vsnprintf - found
-- Looking for vsprintf
-- Looking for vsprintf - found
-- Checking for getaddrinfo.
-- Checking for getaddrinfo. - yes
-- Checking for socklen_t
-- Checking for socklen_t - yes
-- Checking for DIR in sys/dir.h
-- Checking for DIR in sys/dir.h - yes
-- Checking for DIR in sys/ndir.h
-- Checking for DIR in sys/ndir.h - no
-- Checking for va_copy
-- Checking for va_copy - yes
-- Checking for __va_copy
-- Checking for __va_copy - yes
-- Checking for ipv6 support.
-- Checking for ipv6 support. - yes
-- Looking for csin
-- Looking for csin - found
-- Looking for atanh
-- Looking for atanh - found
-- Looking for include files STDC_HEADERS
-- Looking for include files STDC_HEADERS - found
-- Looking for include files HAVE_ALLOCA_H
-- Looking for include files HAVE_ALLOCA_H - found
-- Looking for alloca
-- Looking for alloca - found
-- Check size of size_t
-- Check size of size_t - done
-- Check size of ssize_t
-- Check size of ssize_t - done
-- Check size of ptrdiff_t
-- Check size of ptrdiff_t - done
-- Check size of off_t
-- Check size of off_t - done
-- Check size of double
-- Check size of double - done
-- Check size of float
-- Check size of float - done
-- Check size of short
-- Check size of short - done
-- Check size of uchar
-- Check size of uchar - failed
-- Performing NetCDF Test HAVE_ST_BLKSIZE
-- Performing NetCDF Test HAVE_ST_BLKSIZE - Success
-- Performing NetCDF Test HAVE_FTRUNCATE
-- Performing NetCDF Test HAVE_FTRUNCATE - Success
Fabio88 is offline   Reply With Quote

Old   May 31, 2010, 14:42
Default
  #13
Member
 
Fabio Malizia
Join Date: May 2010
Location: Leuven (Belgium)
Posts: 51
Rep Power: 15
Fabio88 is on a distinguished road
Code:
-- Looking for malloc.h
-- Looking for malloc.h - found
-- Looking for glXGetProcAddressARB
-- Looking for glXGetProcAddressARB - not found
-- Looking for glXGetProcAddress
-- Looking for glXGetProcAddress - not found
-- Could not find extension loader.  Extensions disabled.
-- Looking for printf in m;
-- Looking for printf in m; - found
-- Looking for printf in ws2_32;m
-- Looking for printf in ws2_32;m - not found
-- Looking for printf in wsock32;m
-- Looking for printf in wsock32;m - not found
-- Looking for gethostname in ucb;m
-- Looking for gethostname in ucb;m - not found
-- Looking for connect in socket;m
-- Looking for connect in socket;m - not found
-- Looking for gethostbyname in c
-- Looking for gethostbyname in c - found
-- Looking for include files HAVE_GLOBUS_COMMON_H
-- Looking for include files HAVE_GLOBUS_COMMON_H - not found.
-- Looking for include files HAVE_IO_H
-- Looking for include files HAVE_IO_H - not found.
-- Looking for include files HAVE_MFHDF_H
-- Looking for include files HAVE_MFHDF_H - not found.
-- Looking for include files HAVE_PDB_H
-- Looking for include files HAVE_PDB_H - not found.
-- Looking for include files HAVE_SETJMP_H
-- Looking for include files HAVE_SETJMP_H - found
-- Looking for include files HAVE_SRBCLIENT_H
-- Looking for include files HAVE_SRBCLIENT_H - not found.
-- Looking for include files HAVE_SYS_IOCTL_H
-- Looking for include files HAVE_SYS_IOCTL_H - found
-- Looking for include files HAVE_SYS_PROC_H
-- Looking for include files HAVE_SYS_PROC_H - not found.
-- Looking for include files HAVE_SYS_RESOURCE_H
-- Looking for include files HAVE_SYS_RESOURCE_H - found
-- Looking for include files HAVE_FEATURES_H
-- Looking for include files HAVE_FEATURES_H - found
-- Looking for include files HAVE_WINSOCK_H
-- Looking for include files HAVE_WINSOCK_H - not found.
-- Looking for C++ include stdint.h
-- Looking for C++ include stdint.h - found
-- Check size of char
-- Check size of char - done
-- Check size of long double
-- Check size of long double - done
-- Check size of int8_t
-- Check size of int8_t - done
-- Check size of uint8_t
-- Check size of uint8_t - done
-- Check size of int_least8_t
-- Check size of int_least8_t - done
-- Check size of uint_least8_t
-- Check size of uint_least8_t - done
-- Check size of int_fast8_t
-- Check size of int_fast8_t - done
-- Check size of uint_fast8_t
-- Check size of uint_fast8_t - done
-- Check size of int16_t
-- Check size of int16_t - done
-- Check size of uint16_t
-- Check size of uint16_t - done
-- Check size of int_least16_t
-- Check size of int_least16_t - done
-- Check size of uint_least16_t
-- Check size of uint_least16_t - done
-- Check size of int_fast16_t
-- Check size of int_fast16_t - done
-- Check size of uint_fast16_t
-- Check size of uint_fast16_t - done
-- Check size of int32_t
-- Check size of int32_t - done
-- Check size of uint32_t
-- Check size of uint32_t - done
-- Check size of int_least32_t
-- Check size of int_least32_t - done
-- Check size of uint_least32_t
-- Check size of uint_least32_t - done
-- Check size of int_fast32_t
-- Check size of int_fast32_t - done
-- Check size of uint_fast32_t
-- Check size of uint_fast32_t - done
-- Check size of int64_t
-- Check size of int64_t - done
-- Check size of uint64_t
-- Check size of uint64_t - done
-- Check size of jdshkjfhdks
-- Check size of jdshkjfhdks - failed
-- Check size of int_least64_t
-- Check size of int_least64_t - done
-- Check size of uint_least64_t
-- Check size of uint_least64_t - done
-- Check size of int_fast64_t
-- Check size of int_fast64_t - done
-- Check size of uint_fast64_t
-- Check size of uint_fast64_t - done
-- Check size of __int64
-- Check size of __int64 - failed
-- Check size of long long
-- Check size of long long - done
-- Looking for system
-- Looking for system - found
-- Looking for waitpid
-- Looking for waitpid - found
-- Looking for ioctl
-- Looking for ioctl - found
-- Looking for sigaction
-- Looking for sigaction - found
-- Looking for getpwuid
-- Looking for getpwuid - found
-- Looking for getrusage
-- Looking for getrusage - found
-- Looking for longjmp
-- Looking for longjmp - found
-- Looking for fork
-- Looking for fork - found
-- Looking for difftime
-- Looking for difftime - found
-- Looking for gethostname
-- Looking for gethostname - found
-- Looking for frexpf
-- Looking for frexpf - found
-- Looking for frexpl
-- Looking for frexpl - found
-- Looking for TIOCGWINSZ
-- Looking for TIOCGWINSZ - found
-- Looking for TIOCGETD
-- Looking for TIOCGETD - found
-- Looking for SO_REUSEADDR
-- Looking for SO_REUSEADDR - found
-- Looking for include files HAVE_NETINET_TCP_H
-- Looking for include files HAVE_NETINET_TCP_H - found
-- Looking for include files HAVE_SYS_FILIO_H
-- Looking for include files HAVE_SYS_FILIO_H - not found.
-- Performing Other Test TIME_WITH_SYS_TIME
-- Performing Other Test TIME_WITH_SYS_TIME - Success
-- Performing Other Test HAVE_TM_ZONE
-- Performing Other Test HAVE_TM_ZONE - Success
-- Performing Other Test HAVE_STRUCT_TM_TM_ZONE
-- Performing Other Test HAVE_STRUCT_TM_TM_ZONE - Success
-- Performing Other Test HAVE_ATTRIBUTE
-- Performing Other Test HAVE_ATTRIBUTE - Success
-- Performing Other Test HAVE_FUNCTION
-- Performing Other Test HAVE_FUNCTION - Success
-- Performing Other Test HAVE_TM_GMTOFF
-- Performing Other Test HAVE_TM_GMTOFF - Success
-- Performing Other Test HAVE_TIMEZONE
-- Performing Other Test HAVE_TIMEZONE - Success
-- Performing Other Test HAVE_STRUCT_TIMEZONE
-- Performing Other Test HAVE_STRUCT_TIMEZONE - Success
-- Performing Other Test HAVE_STAT_ST_BLOCKS
-- Performing Other Test HAVE_STAT_ST_BLOCKS - Success
-- Performing Other Test SYSTEM_SCOPE_THREADS
-- Performing Other Test SYSTEM_SCOPE_THREADS - Success
-- Performing Other Test HAVE_SOCKLEN_T
-- Performing Other Test HAVE_SOCKLEN_T - Success
-- Performing Other Test DEV_T_IS_SCALAR
-- Performing Other Test DEV_T_IS_SCALAR - Success
-- Performing Other Test HAVE_OFF64_T
-- Performing Other Test HAVE_OFF64_T - Success
-- Looking for lseek64
-- Looking for lseek64 - found
-- Looking for fseek64
-- Looking for fseek64 - not found
-- Performing Other Test INLINE_TEST_inline
-- Performing Other Test INLINE_TEST_inline - Success
-- Performing Other Test INLINE_TEST___inline__
-- Performing Other Test INLINE_TEST___inline__ - Success
-- Performing Other Test INLINE_TEST___inline
-- Performing Other Test INLINE_TEST___inline - Success
-- Checking for apropriate format for 64 bit long:
-- Checking for apropriate format for 64 bit long: "l"
-- Looking for strtoll
-- Looking for strtoll - found
-- Check if system supports 64 bit streams
-- Check if system supports 64 bit streams - yes
-- Looking for malloc.h
-- Looking for malloc.h - found
-- Check if system supports 64 bit streams
-- Check if system supports 64 bit streams - yes
-- Plugin: Streaming Plugin disabled
-- Plugin: Array disabled
-- Plugin: ClientGeoView disabled
-- Plugin: ClientGeoView2D disabled
-- Plugin: ClientGraphView disabled
-- Plugin: ClientHierarchyView disabled
-- Plugin: ClientRecordView disabled
-- Plugin: ClientTableView disabled
-- Plugin: ClientTreeView disabled
-- Plugin: CommonToolbar disabled
-- Plugin: Cosmology Filters disabled
-- Plugin: GraphLayoutFilterPanel disabled
-- Plugin: Infovis disabled
-- Plugin: Filters for Flux and Circulation Fields enabled
-- Plugin: netCDFReaders disabled
-- Plugin: Prism enabled
-- Plugin: Point Sprites enabled
-- Plugin: pvblot disabled
-- Plugin: SLACTools disabled
-- Plugin: SQLDatabaseGraphSourcePanel disabled
-- Plugin: SQLDatabaseTableSourcePanel disabled
-- Plugin: SplitTableFieldPanel disabled
-- Plugin: StatisticsToolbar disabled
-- Plugin: TableToGraphPanel disabled
-- Plugin: TableToSparseArrayPanel disabled
-- Plugin: ThresholdTablePanel disabled
-- Plugin: ClientGraphViewFrame disabled
-- Plugin: VisItReaderPlugin disabled
-- Application: Standard ParaView Client enabled
-- Application: OverView Informatics Client disabled
-- Application: Streaming ParaView Application disabled
-- Configuring development install...
CMake Error: The following variables are used in this project, but they are set to NOTFOUND.
Please set them or make sure they are set and tested correctly in the
Fabio88 is offline   Reply With Quote

Old   May 31, 2010, 14:43
Default
  #14
Member
 
Fabio Malizia
Join Date: May 2010
Location: Leuven (Belgium)
Posts: 51
Rep Power: 15
Fabio88 is on a distinguished road
Code:
CMake files:
OPENGL_INCLUDE_DIR (ADVANCED)
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Wrapping
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Utilities
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Utilities/kwsys
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Utilities/vtkzlib
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Utilities/vtkjpeg
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Utilities/vtkpng
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Utilities/vtktiff
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Utilities/vtkexpat
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Utilities/vtkfreetype
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Utilities/vtklibxml2
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Utilities/DICOMParser
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Utilities/MaterialLibrary
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Utilities/vtklibproj4
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Utilities/verdict
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Utilities/vtknetcdf
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Utilities/vtkmetaio
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Utilities/vtksqlite
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Utilities/vtkexodus2
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Utilities/vtkalglib
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Utilities/Doxygen
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Utilities/EncodeString
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Utilities/ftgl
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Utilities/ParseOGLExt
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Common
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Filtering
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Imaging
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Graphics
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/GenericFiltering
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/IO
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Rendering
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/VolumeRendering
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Hybrid
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Widgets
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Parallel
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Infovis
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Geovis
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Views
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/GUISupport
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/GUISupport/Qt
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/GUISupport/Qt/Chart
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/GUISupport/Qt/Testing/Cxx
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Wrapping/Python
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Utilities/vtkTclTest2Py
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Common/Testing
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Common/Testing/Cxx
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Common/Testing/Python
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Filtering/Testing
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Filtering/Testing/Cxx
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Filtering/Testing/Python
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Graphics/Testing
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Graphics/Testing/Cxx
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Graphics/Testing/Python
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/GenericFiltering/Testing
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/GenericFiltering/Testing/Cxx
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Imaging/Testing
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Imaging/Testing/Cxx
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Imaging/Testing/Python
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/IO/Testing
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/IO/Testing/Python
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/IO/Testing/Cxx
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Rendering/Testing
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Rendering/Testing/Cxx
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Rendering/Testing/Python
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/VolumeRendering/Testing
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/VolumeRendering/Testing/Cxx
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/VolumeRendering/Testing/Python
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Hybrid/Testing
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Hybrid/Testing/Cxx
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Hybrid/Testing/Python
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Widgets/Testing
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Widgets/Testing/Cxx
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Widgets/Testing/Python
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Parallel/Testing
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Parallel/Testing/Cxx
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Parallel/Testing/Python
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Infovis/Testing
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Infovis/Testing/Cxx
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Geovis/Testing
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Geovis/Testing/Cxx
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Views/Testing
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Views/Testing/Cxx
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/VTK/Utilities/LastConfigureStep
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/Utilities/VTKPythonWrapping
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/Utilities/VTKClientServer
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/Utilities/VTKClientServer/Wrapping
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/Utilities/VTKClientServer/Common
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/Utilities/VTKClientServer/Filtering
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/Utilities/VTKClientServer/GenericFiltering
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/Utilities/VTKClientServer/Imaging
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/Utilities/VTKClientServer/Graphics
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/Utilities/VTKClientServer/IO
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/Utilities/VTKClientServer/Rendering
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/Utilities/VTKClientServer/Hybrid
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/Utilities/VTKClientServer/Parallel
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/Utilities/VTKClientServer/VolumeRendering
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/Utilities/VTKClientServer/Widgets
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/Utilities/VTKClientServer/Xdmf2
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/Utilities/VTKClientServer/Infovis
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/Utilities/VTKClientServer/Views
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/Utilities/VTKClientServer/Testing
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/Servers/Filters
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/Servers/Filters/Testing
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/Servers/Filters/Testing/Cxx
   used as include directory in directory  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/Servers/Filters/Testing/Python

-- Configuring incomplete, errors occurred!
    Starting make
make: *** No targets specified and no makefile found.  Stop.
Command exited with non-zero status 2
0.01user 0.00system 0:00.00elapsed 333%CPU (0avgtext+0avgdata  4000maxresident)k
0inputs+0outputs (0major+301minor)pagefaults 0swaps
    Done make
    For quicker development, linking lib/paraview-3.6/ -> bin/
    Creating html documentation
make: *** No rule to make target `HTMLDocumentation'.  Stop.
    Installing ParaView to  /home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/platforms/linux64Gcc
disabled 'make install' for now, just use links
    ---
    Installation complete
    Set environment variables:

        export  ParaView_INST_DIR=/home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1
        export  ParaView_DIR=/home/fabio/OpenFOAM/ThirdParty-1.6.x/paraview-3.6.1/platforms/linux64Gcc
        export  PV_PLUGIN_PATH=/home/fabio/OpenFOAM/OpenFOAM-1.6.x/lib/linux64GccDPOpt
        export PATH=$ParaView_DIR/bin:$PATH
    ---
-- Replacing path hard links for $ParaView_DIR
   *.cmake: ###################
-- Replacing path hard links for $ParaView_INST_DIR
   *.cmake: ############################
-- Replacing path hard links for $CMAKE_HOME
   *cmake*: 
-- Replacing path hard links for $WM_COMPILER_DIR
   *cmake*: ##############
done

real    0m39.905s
user    0m23.770s
sys    0m9.450s
Fabio88 is offline   Reply With Quote

Old   May 31, 2010, 15:02
Default
  #15
Retired Super Moderator
 
Bruno Santos
Join Date: Mar 2009
Location: Lisbon, Portugal
Posts: 10,974
Blog Entries: 45
Rep Power: 128
wyldckat is a name known to allwyldckat is a name known to allwyldckat is a name known to allwyldckat is a name known to allwyldckat is a name known to allwyldckat is a name known to all
Oooops... that error has already been reported and there is a fix but it hasn't yet been applied to the main script version

OK, read this post: OpenFOAM 1.6.x Installer for Ubuntu #76
And follow through the first link written there. I haven't had time to fix the main script nor to write some more specific instructions on how to use the experimental script.

Best regards,
Bruno
__________________
wyldckat is offline   Reply With Quote

Old   May 31, 2010, 15:42
Default
  #16
Member
 
Fabio Malizia
Join Date: May 2010
Location: Leuven (Belgium)
Posts: 51
Rep Power: 15
Fabio88 is on a distinguished road
perfect...now I try..
but onl one thing...

in the installation mode I've to chose server
in the "chose install settings"
I select:
use startFoam alias and use OpenFOAM gcc compiler?
no others?
in the "chose paraview settings"
build paraview with gui?

these settings are correct?

I know that probably my questions are so stupid....
but I'm a newbie of linux

thanks a lot for your patience
Fabio88 is offline   Reply With Quote

Old   June 1, 2010, 08:02
Default
  #17
Retired Super Moderator
 
Bruno Santos
Join Date: Mar 2009
Location: Lisbon, Portugal
Posts: 10,974
Blog Entries: 45
Rep Power: 128
wyldckat is a name known to allwyldckat is a name known to allwyldckat is a name known to allwyldckat is a name known to allwyldckat is a name known to allwyldckat is a name known to all
Greetings Fabio,

Quote:
Originally Posted by Fabio88 View Post
I know that probably my questions are so stupid....
Not at all, people are entitled to be have questions and wanting to be sure of the steps to take.

Quote:
Originally Posted by Fabio88 View Post
thanks a lot for your patience
You're welcome.

Quote:
Originally Posted by Fabio88 View Post
in the installation mode I've to chose server
in the "chose install settings"
I select:
use startFoam alias and use OpenFOAM gcc compiler?
no others?
in the "chose paraview settings"
build paraview with gui?

these settings are correct?
Are these settings for the first time you ran the installation script? Or for the experimental script?

Best regards,
Bruno
__________________
wyldckat is offline   Reply With Quote

Old   June 1, 2010, 10:09
Default
  #18
Member
 
Fabio Malizia
Join Date: May 2010
Location: Leuven (Belgium)
Posts: 51
Rep Power: 15
Fabio88 is on a distinguished road
I have run 1.6x with the error I have described you

my question is about the experimental setting...



best regards

Fabio
Fabio88 is offline   Reply With Quote

Old   June 1, 2010, 10:28
Default
  #19
Retired Super Moderator
 
Bruno Santos
Join Date: Mar 2009
Location: Lisbon, Portugal
Posts: 10,974
Blog Entries: 45
Rep Power: 128
wyldckat is a name known to allwyldckat is a name known to allwyldckat is a name known to allwyldckat is a name known to allwyldckat is a name known to allwyldckat is a name known to all
OK, with the experimental script, choose the "custom" option, not server nor fresh.
Then choose to build Qt and/or ParaView.
Then when the menu with the options for ParaView and Qt, choose to build both Qt and ParaView (1st and 2nd options) and the remaining options depend on what you'll need: GUI, Python, MPI. Don't try OSMesa for now.

Then it will download Qt to build it for using with ParaView.

Best regards,
Bruno
__________________
wyldckat is offline   Reply With Quote

Old   June 1, 2010, 18:10
Default
  #20
Member
 
Fabio Malizia
Join Date: May 2010
Location: Leuven (Belgium)
Posts: 51
Rep Power: 15
Fabio88 is on a distinguished road
open foam hate me!!!
I follow your instructions and apparently go all well...no error messages

I try after to open paraview but I don't know why it isn't present

I try after to see if Open foam start but the foam installation test give me errors both for 1.6 and 1.6.x

Code:
Checking basic setup...
-------------------------------------------------------------------------------

FATAL ERROR: OpenFOAM environment not configured.

    Please refer to the installation section of the README file:
    <OpenFOAM installation dir>/OpenFOAM-1.6/README
    to source the OpenFOAM environment.

fabio@fabio-laptop:~/OpenFOAM/OpenFOAM-1.6.x/bin$ ./foamInstallationTest
I found this error in the forum and there is your solution:

http://www.cfd-online.com/Forums/ope...oam-1-6-a.html

but it is for 1.6....I can follow?

if it can help you, now there is write in the bashrc file in my home these lines(at the end)
Code:
fi

alias startFoam=". /home/fabio/OpenFOAM/OpenFOAM-1.6.x/etc/bashrc"

however now the important thing is to have open foam, after I install paraview from ubuntu software center and I'll use foamtoVTK as you had suggested me before...
but how can I solve this problem?



I'm very sad for all these problems and relative questions


bye
Fabio
Fabio88 is offline   Reply With Quote

Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
CRITICAL ERROR on installation OpenFOAM 141 nuovodna OpenFOAM Installation 19 March 22, 2010 23:36
Critical errors during OpenFoam installation in OpenSuse 11.0 amscosta OpenFOAM 5 May 1, 2009 15:06
Critical errors gcc and icoFoam during installation of 15 quartzian OpenFOAM Installation 3 December 12, 2008 13:42
64bitrhel5 OF installation instructions mirko OpenFOAM Installation 2 August 12, 2008 19:07
Adventure of fisrst openfoam installation on Ubuntu 710 jussi OpenFOAM Installation 0 April 24, 2008 15:25


All times are GMT -4. The time now is 00:32.