Table of Contents
$ sudo apt-get -f install octave3.0 octave3.0-headersNote: octave3.2 is not supported now.
$ cd /usr/lib $ sudo ln -s libatlas.so.3gf libatlas.so
$ sudo apt-get -f install libboost1.40-all-dev
$ sudo apt-get -f install libglut3 libglut3-devThen, download the source code (e.g. ode-0.11.1.zip) and extract it:
$ cd ~/lib $ unzip ode-0.11.1.zip $ cd ode-0.11.1/Here, we put ODE on ~/lib/ode-0.11.1, but any location is possible. Execute ./configure (maybe you need to install the other packages):
$ ./configure --enable-double-precisionHere, --enable-double-precision is required for the SkyAI's benchmark. If the configure succeeded, execute the make command:
$ makeThat's it. You need NOT to execute 'make install'.
You can choose two ways:
$ sudo apt-get -f install git-coreDownload SkyAI from sourceforge:
$ cd ~/proj $ git clone git://skyai.git.sourceforge.net/gitroot/skyai/skyaiHere, we put SkyAI on ~/proj/skyai, but any location is OK.
Create the following files at the SkyAI directory (e.g. ~/proj/skyai).
include $(BASE_REL_DIR)/Makefile_preconf.sample SKYAI_BASE := $(wildcard ~/proj/skyai)Here, we assume that SkyAI is put on ~/proj/skyai. If not, modify SKYAI_BASE.
## for Octave ifeq ($(USING_OCTAVE),true) OCTAVE_VER:=3.0.5 LIBS += -I/usr/include/octave-$(OCTAVE_VER) LDLIBS += -L/usr/lib/octave-$(OCTAVE_VER) -loctave -lcruft -Wl,-rpath /usr/lib/octave-$(OCTAVE_VER) LDLIBS += -ldl -lfftw3 -L/usr/lib/atlas -latlas -llapack -lblas endif ## for ODE ifeq ($(USING_ODE),true) LIBODE := $(wildcard ~/lib/ode-0.11.1) LIBS += -I$(LIBODE)/include LIBS += -DODE_MINOR_VERSION=11 -DdDOUBLE LDLIBS += $(LIBODE)/ode/src/.libs/libode.a LDLIBS += $(LIBODE)/drawstuff/src/.libs/libdrawstuff.a LDLIBS += -lSM -lICE -lGL -L/usr/X11R6/lib -lXext -lX11 -ldl -lGLU -lpthread endifHere, we assume that (1) the octave version is 3.0.5, and (2) ODE is version 0.11.1 and put on ~/lib/ode-0.11.1. If you are using a difference configuration, modify OCTAVE_VER and LIBODE.
In the skyai directory, execute:
$ make
In the procedure of Debian/Ubuntu (32bit), change the setup of Makefile_preconf as follows:
include $(BASE_REL_DIR)/Makefile_preconf.sample SKYAI_BASE := $(wildcard ~/proj/skyai) ifeq ($(DEBUG),true) CXXFLAGS := -g -Wall -rdynamic else CXXFLAGS := -g -Wall -rdynamic -O3 endif LDFLAGS := $(CXXFLAGS)
To test your installation, please see Running Demos.
Please do not hesitate to contact us. Any comments are welcome!