On May 12, 2013, at 5:51 PM, Anas Faruqui wrote:
> Hi,
>
> i want to use the
classdef branch on ubuntu 12.04. i used the following steps
> hg clone
http://www.octave.org/hg/ octave
> hg pull
> hg update classdef
>
> then
> ./bootstrap
> ./configure
> and then
> make
>
> when i do make i am getting the following error :
> .
> .
> .
> link: `parse-tree/parse_tree_libparse_tree_la-pt-decl.lo' is not a valid libtool object
> make[3]: *** [parse-tree/libparse-tree.la] Error 1
> make[3]: Leaving directory `/home/dan/octave/libinterp'
> make[2]: *** [all] Error 2
> make[2]: Leaving directory `/home/dan/octave/libinterp'
> make[1]: *** [all-recursive] Error 1
> make[1]: Leaving directory `/home/dan/octave'
> make: *** [all] Error 2
>
>
> can anyone help me in this regard
I just built the classdef branch on Ubuntu
12.10 using the commands below.
export JAVA_HOME=/usr/lib/jvm/java-7-openjdk-i386
./bootstrap
./configure --enable-jit
make -j2
Previously I had done something like the below the install all the needed dependencies.
sudo apt-get build-dep octave3.6
Ben