I trying to install CEED/CEGUI on ubuntu but I get a sigfault. Here my steps:
Read http://cegui.org.uk/wiki/CEED. After that I did:
Code: Select all
hg clone https://bitbucket.org/cegui/cegui
hg clone https://bitbucket.org/cegui/ceed
cd ceed
hg update v0-8
cd ../
cd cegui
hg update v0-8
cd ../
mkdir cegui/build
cd cegui/build
cmake -DCEGUI_BUILD_PYTHON_MODULES=ON -DCEGUI_BUILD_RENDERER_OPENGL=ON -DCEGUI_BUILD_RENDERER_OPENGL3=ON ../
And then:
Code: Select all
cd ../ceed
cd bin
./runwrapper.sh
./ceed-gui
It doesn't works because of the cd .., so I did:
Code: Select all
cd ../../ceed
cd bin
./runwrapper.sh
./ceed-gui
Still doesn't work so I tried a little bit more I went to the folder cegui/build previously created and i did "make".
Then I tried again but I got:
/usr/lib/python2.7/dist-packages/cegui-0.8
Following problems found:
PyCEGUI package is missing! PyCEGUI provides Python bindings for CEGUI, the library this editor edits assets for, see cegui.org.uk. (exception: No module named PyCEGUI)
Your environment doesn't meet critical prerequisites! Can't start!
After that I edited the runwrapper.sh and I changed
Code: Select all
CEGUI_BUILD_PATH="$PARENT_DIR/../../cegui-v0-8"
Code: Select all
CEGUI_BUILD_PATH="$PARENT_DIR/../../cegui"
And then I get the segment fault. I had a look at prerequisites.py and it's just when it try to do __import__("PyCEGUI")
I have read the followings links but without success , any ideas?
http://cegui.org.uk/wiki/CEED
viewtopic.php?f=15&t=5566
viewtopic.php?f=15&t=6862
viewtopic.php?f=15&t=6932
https://bitbucket.org/cegui/cegui
PS.1: I'm on ubuntu 14.04 32bits with these dependences:
Code: Select all
cmake python-opengl pyside-tools libboost-python-dev libboost-python1.54.0 libboost-python1.54-dev
Code: Select all
boost-python
PS.2: I don't get any error after cmake or make.
PS.3: If I don't change the runwrapper.sh and i put PyCEGUI.so in the same folder as ceed-gui, I get the same segment fault.
Thanks.