You are not logged in.
Pages: 1
I'm trying to create a package for xppaut, which is a tool for solving differential, difference, stocastic, delay, and functional equations among other things --- it makes toast too. I'm currently talking to the lead developer to see if he has any solutions to my problems, and so far we haven't found much. I thought I might as well see if anyone here has any answers. When running make, the following error occurs
collect2: ld terminate with signal 11(Seg fault)
/usr/bin/ld: BFD 2.15 assertion fail elflink.c:6081
Here is the PKGBUILD:
pkgname=xppaut
pkgver=5.85
pkgrel=1
pkgdesc="A tool for solving differential, difference, delay, funtional, and
stochastic equations as well as boundary value problems"
url="http://www.math.pitt.edu/~bard/xpp/xpp.html"
license="GPL2"
depends=('x-server')
source=("http://www.math.pitt.edu/~bard/bardware/${pkgname}${pkgver}.tar.gz")
md5sums=('879fd9a1b4306602ef44887297f20ed4')
build() {
cd $startdir/src
make || return 1
make prefix=$startdir/pkg install }
I don't know if it will help but I can get the source to compile in Debian, on another machine of course, using gcc 3.3.4 configured with the following flags: --enable-languages=c,c++,java,f77,pascal,objc,ada,treelang --with-gxx-include-dir=/usr/include/c++/3.3 --enable-shared --with-system-zlib --enable-nls --without-included-gettext --enable-__cxa_atexit --enable-debug and posix threads. I am using gcc 3.4.3, and assume most Arch users have the same gcc flags. Thanks for your time.
Drew
------
Knowledge Brings Fear
Sweet, now I can play with myself.
Offline
Pages: 1