Hi, On Thu, May 13, 2010 at 11:53:54PM -0700, DoucheWhite wrote: > I've been having trouble to install Octave 3.2.4 on a server that runs SuSE > Linux Enterprise Server 9; the Linux kernel version is 2.6.5-7.244-sn2 > running on the ia64 chipset. I have past the configure step some on > recommended me using syntax "./configure F77=gfortran" it worked with few > warning messages. However when uses "./make" it wouldn't compile. It stops > around 1 hour or so and pops out tons of information and ends with
For a start: install and configure ccache (should come with your distribution and the configuration is easy). This won't help with your problem, but will cut down on compilation times a *lot*. > "undefined reference to `MPI_Attr_delete' > ../src/liboctinterp.so: undefined reference to `MPI_Group_range_excl' > ../src/liboctinterp.so: undefined reference to `MPI_Pack_size' > ../src/liboctinterp.so: undefined reference to `MPI_Type_contiguous' > ../src/liboctinterp.so: undefined reference to `MPI_Group_incl' > ../src/liboctinterp.so: undefined reference to `MPI_Send_init' > ../src/liboctinterp.so: undefined reference to `MPI_Get_elements' > ../src/liboctinterp.so: undefined reference to > `PMPI::Request::ignored_status' > ../src/liboctinterp.so: undefined reference to `MPI_Pack' > ../src/liboctinterp.so: undefined reference to `MPI_Start' Have a look at http://bugs.gentoo.org/show_bug.cgi?id=288230 and http://wiki.debian.org/GfortranTransition It seems you are hit by gfortran and g77 having incompatible name mangling. Try compiling with "gfortran -f2c". Thomas ------------------------------------------------------------------------------ _______________________________________________ Octave-dev mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/octave-dev
