Menu

#7 Python static linking dependencies could not be evaluated

open
nobody
Build (2)
5
2013-03-18
2013-03-18
No

System Linux kernel: 3.7.9-2-ARCH.
I have all the requirements described in the DEVELOPERS file:

* ogre 1.8.1-3
* freeimage 3.15.4-1
* cmake 2.8.10.2-4
* python 3.3.0-3 (and python2 2.7.3-4)

BY THE WAY: The question is which version of Python do you use in OpenDarkEngine?

I ran cmake:
'''
$ cmake .
-- Debugging is Off
-- WARNING: you are using the obsolete 'PKGCONFIG' macro, use FindPkgConfig
Warning: ode/ode.h not found under /usr/include/;/usr/local/include/
Warning: ode library not found under /usr/include/;/usr/local/include/
CMake Error at CMakeLists.txt:165 (FIND_PACKAGE):
Found package configuration file:

/home/konrad/Pobrane/opde-0.2.9/opde-svn/trunk/cmake/ODEConfig.cmake

but it set ODE_FOUND to FALSE so package "ODE" is considered to be NOT
FOUND.

-- Configuring incomplete, errors occurred!
'''

From here I edited trunk/cmake/ODEConfig.cmake line 50 from
'''
SET(ODE_FOUND 0)
'''
to
'''
SET(ODE_FOUND 1)
'''

Next attempt of cmake and its errors:
'''
$ cmake .
-- Debugging is Off
-- WARNING: you are using the obsolete 'PKGCONFIG' macro, use FindPkgConfig
Warning: ode/ode.h not found under /usr/include/;/usr/local/include/
Warning: ode library not found under /usr/include/;/usr/local/include/
-- WARNING: you are using the obsolete 'PKGCONFIG' macro, use FindPkgConfig
-- FreeImage Found OK
-- - FreeImage includes /usr/include
-- - FreeImage libs /usr/lib64/libfreeimage.so
-- ODE Found OK
-- - ODE includes ODE_INCLUDE_DIR-NOTFOUND
-- - ODE libs ODE_LIBRARIES-NOTFOUND
CMake Error at PythonDeps.cmake:52 (MESSAGE):
Python static linking dependencies could not be evaluated - return value
non-zero
Call Stack (most recent call first):
CMakeLists.txt:205 (FIND_PYTHON_DEPS)
'''

-- Configuring incomplete, errors occurred!

I think I need some guidances with cmake. Can someone please help me with this issue?
Thanks in advance,
KT

Discussion


Log in to post a comment.