Find the answer to your Linux question:
Results 1 to 5 of 5
hi all, Im trying to get orge3d installed. But ran into a issue. Currently running Code: $lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 10.04.1 LTS ...
  1. #1
    Just Joined!
    Join Date
    Jan 2009
    Posts
    21

    Exclamation install orge3d using cmake on ubuntu10.04..

    hi all,

    Im trying to get orge3d installed. But ran into a issue. Currently running
    Code:
    $lsb_release -a
    No LSB modules are available.
    Distributor ID:    Ubuntu
    Description:    Ubuntu 10.04.1 LTS
    Release:    10.04
    Codename:    lucid
    The guide I'm using is;
    w w w . ogre3d . org/tikiwiki/CMake+Quick+Start+Guide?tikiversion=Linux
    and got stuck on step 6
    heres what happened
    Code:
    $ cmake ..
    -- The CXX compiler identification is unknown
    CMake Error: your CXX compiler: "CMAKE_CXX_COMPILER-NOTFOUND" was not found.   Please set CMAKE_CXX_COMPILER to a valid compiler path or name.
    -- Configuring OGRE 1.7.1
    -- Search path: /home/aa/Game/ogre_src_v1-7-1/build/Dependencies;/home/aa/Game/ogre_src_v1-7-1/Dependencies;/home/aa/Game/ogre_src_v1-7-1/build/../Dependencies;/home/aa/Game/ogre_src_v1-7-1/../Dependencies
    -- Looking for ZLIB...
    -- checking for module 'zzip-zlib-config'
    --   package 'zzip-zlib-config' not found
    -- Could not locate ZLIB
    -- Looking for FreeImage...
    -- checking for module 'freeimage'
    --   package 'freeimage' not found
    -- Could not locate FreeImage
    -- Looking for FREETYPE...
    -- checking for module 'freetype2'
    --   package 'freetype2' not found
    -- CMAKE_PREFIX_PATH: /home/aa/Game/ogre_src_v1-7-1/build/Dependencies;/home/aa/Game/ogre_src_v1-7-1/Dependencies;/home/aa/Game/ogre_src_v1-7-1/build/../Dependencies;/home/aa/Game/ogre_src_v1-7-1/../Dependencies;/usr/local
    -- Could not locate FREETYPE
    -- Looking for Cg...
    -- checking for module 'Cg'
    --   package 'Cg' not found
    -- Could not locate Cg
    -- Looking for POCO...
    -- checking for module 'POCO'
    --   package 'POCO' not found
    -- Could not locate POCO
    -- Looking for TBB...
    -- Could not locate TBB
    -- Looking for OIS...
    -- checking for module 'OIS'
    --   package 'OIS' not found
    -- Could not locate OIS
    -- Could NOT find Doxygen  (missing:  DOXYGEN_EXECUTABLE)
    -- Looking for CppUnit...
    -- checking for module 'cppunit'
    --   package 'cppunit' not found
    -- Could not locate CppUnit
    CMake Error at CMake/Utils/MacroLogFeature.cmake:100 (MESSAGE):
      
    
      
      -----------------------------------------------------------------------------
    
    
      -- The following REQUIRED packages could NOT be located on your system.
    
      -- Please install them before continuing this software installation.
    
      -- If you are in Windows, try passing -DOGRE_DEPENDENCIES_DIR=<path to
      dependencies>
    
      
      -----------------------------------------------------------------------------
    
    
      + freetype: Portable font engine < w w w .freetype . org>
    
      + X11: X Window system < w w w  . x . org>
    
      + Xt: X Toolkit <w w w . x . org>
    
      + Xaw: X11 Athena widget set <w w w . x . org>
    
      
      -----------------------------------------------------------------------------
    Call Stack (most recent call first):
      CMake/Dependencies.cmake:203 (MACRO_DISPLAY_FEATURE_LOG)
      CMakeLists.txt:157 (include)
    
    
    -- Configuring incomplete, errors occurred!
    now I thought I was missing something(of course) like freetype X11 Xt Xaw
    so i ran
    Code:
    $make -v
    GNU Make 3.81
    Copyright (C) 2006  Free Software Foundation, Inc.
    This is free software; see the source for copying conditions.
    There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
    PARTICULAR PURPOSE.
    weird that its there but not according to Cmake
    but the others are not installed
    Code:
     
    $ X11 -v
    The program 'X11' is currently not installed.  You can install it by typing:
    sudo apt-get install x11-common
    
    $ Xt -v
    Xt: command not found
    
    $ Xaw -v
    No command 'Xaw' found, did you mean:
     Command 'raw' from package 'util-linux' (main)
     Command 'paw' from package 'paw-common' (universe)
    Xaw: command not found
    Also, this is a fresh install.
    and only thing I have really installed on it is; Latest Nvidia driver(for my graphics card), Blender(stable), Gimp(stable), wine1.2, winetricks and flashplugin.

    So I was just wondering if anyone knows where I went wrong or what is needed to install orge3d properly please?
    (And if I have missed a log please let me know and I'll post it)

  2. #2
    Linux Guru Rubberman's Avatar
    Join Date
    Apr 2009
    Location
    I can be found either 40 miles west of Chicago, or in a galaxy far, far away.
    Posts
    8,977
    To get you started:

    1. Install the cmake package (it is NOT make nor is it gmake).
    2. Install the LSB (Linux Standard Base) packages.
    3. Try again.
    Sometimes, real fast is almost as good as real time.
    Just remember, Semper Gumbi - always be flexible!

  3. #3
    Just Joined!
    Join Date
    Jan 2009
    Posts
    21
    To get you started:

    1. Install the cmake package (it is NOT make nor is it gmake).
    2. Install the LSB (Linux Standard Base) packages.
    3. Try again.
    Just wondering where to get them. I tried terminal, no luck there. So i tried Ubuntu software source and i whole heap came up. but when i looked in synaptic there wasnt much to choice from.

    And in Ubuntu software sources i have most of the required ones installed
    Could you please clarify which ones are needed?

  4. #4
    Linux Guru Rubberman's Avatar
    Join Date
    Apr 2009
    Location
    I can be found either 40 miles west of Chicago, or in a galaxy far, far away.
    Posts
    8,977
    I'm running diagnostics on my Ubuntu laptop right now so it will be awhile (tomorrow probably) before I can be specific about this as per Ubuntu repositories. You should be able to get them either via synaptic (gui) or apt-get (command line). I know that cmake is just a standard package on my CentOS/RHEL workstation. Have you tried from the command line:
    Code:
    sudo apt-get cmake
    just like that?
    Sometimes, real fast is almost as good as real time.
    Just remember, Semper Gumbi - always be flexible!

  5. #5
    Just Joined!
    Join Date
    Jan 2009
    Posts
    21
    yeah i did do that, but a little different though
    Code:
    sudo apt-get install cmake cmake-gui
    hmmm... I'll keep trying to get it to work and let you know if I do.

    thank-you very much for trying to help out.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...