Package: gmt
Version: 4.0-2
Severity: serious

There was an error while trying to autobuild your package:

> Automatic build of gmt_4.0-2 on sarti by sbuild/hppa 85
> Build started at 20060406-0559

[...]

> ** Using build dependencies supplied by package:
> Build-Depends: netcdfg-dev, tcsh | csh, debhelper (>= 4.0), bzip2

[...]

> ar cvur libgmt.a fourt.o gmt_calclock.o gmt_cdf.o gmt_customio.o gmt_grdio.o 
> gmt_init.o gmt_io.o gmt_map.o gmt_plot.o gmt_shore.o gmt_stat.o gmt_support.o 
> gmt_vector.o   
> a - fourt.o
> a - gmt_calclock.o
> a - gmt_support.o
> a - gmt_vector.o
> ranlib libgmt.a
> ld -shared pslib.o -o libpsl.so

A full build log can be found at:
http://buildd.debian.org/build.php?arch=hppa&pkg=gmt&ver=4.0-2


GCC requires that programs built with gcc be linked with gcc, not with
ld.  Hence this:
  ld -shared pslib.o -o libpsl.so
should be:
  gcc -Wl,-shared pslib.o -o libpsl.so

and so on throughout the code.

Otherwise, you wind up missing the architecture specific libraries that
get added by gcc at link time.

lamont


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to