[SciPy-dev] some progress on Freebsd 4.4-stable build

eric eric at scipy.org
Mon Nov 5 21:07:27 EST 2001


Hey Rob,

Looks like the files are compiling fine, but something goes awry when
building the library (.a)  files.  This is done in 'ar' commands.  They
should look something like:

    ar -cur build/temp.freebsd-4.4-STABLE-i386-2.1/libamos.a foo.o bar.o ...

and "archives" all the object files into the library.  For some reason, all
the 'ar' commands in your output are missing all the object files.  They
just have:

    ar -cur build/temp.freebsd-4.4-STABLE-i386-2.1/libamos.a

Without any object files listed, the ar command doesn't build the library
(and if it did, there'd be linking problems because it doesn't have any
functions in it).  You can check if this is indeed the problem by looking in

    build/temp.freebsd-4.4-STABLE-i386-2.1/

It should have several .a files.  My hunch is it has none, or at least none
that relied on F77 files.

This points to a problem in the build_flib.py module which is in charge of
building the static Fortran libraries.  If your willing to poke around in
the fortran_compiler_base class that lives there, look first in the
build_library() method.   Add the print statements below, and uncomment the
simple call to self.create_static_lib().  Comment out the looping mess at
the end which was added to get around limitation on Windows (CMD) shell.
Tell me what you get as output. in the "building amos" portion of the
library:

    def build_library(self,library_name,source_list,module_dirs=None,
                      temp_dir = ''):

        #make sure the temp directory exists before trying to build files
        import distutils.dir_util
        distutils.dir_util.mkpath(temp_dir)

        #this compiles the files
        object_list = self.to_object(source_list,module_dirs,temp_dir)

        # actually we need to use all the object file names here to
        # make sure the library is always built.  It could occur that an
        # object file exists but hasn't been put in the archive. (happens
        # a lot when builds fail once and are restarted).
        object_list = self.source_to_object_names(source_list, temp_dir)

        ################## ADD THIS #########################
        print 'AFTER OBJECT NAMES', object_list

        ################## UNCOMMENT THIS #################
        self.create_static_lib(object_list,library_name,temp_dir)

        # This is pure bunk...
        # Windows fails for long argument strings on the command line.
        # if objects is real long (> 2048 chars or so on my machine),
        # the command fails (cmd.exe /e:2048 on w2k)
        # for now we'll split linking into to steps which should work for
        ############## COMMENT THIS OUT ####################
        #objects = object_list[:]
        #while objects:
        #    obj,objects = objects[:20],objects[20:]
        #    self.create_static_lib(obj,library_name,temp_dir)

One other note of caution.  I think there are some dependency issues that
break compiles for exactly the situation you find yourself in where all the
object files are created, but the static library is not correctly built.  To
test whether the amos library is getting built correctly, it is probably
best to delete one of the object files it depends on before calling setup.py
again -- something like

    rm build/temp.freebsd-4.4-STABLE-i386-2.1/zbesh.o
    python setup.py build

should force the rebuild of the library.

thanks

eric

----- Original Message -----
From: "Rob" <europax at home.com>
To: <scipy-dev at scipy.net>
Sent: Monday, November 05, 2001 9:37 PM
Subject: [SciPy-dev] some progress on Freebsd 4.4-stable build


> The following changes in setup.py allows the X11 stuff to build:
>
> 217c217
> <                         include_dirs = ['/usr/include/X11'],
> ---
> >                         include_dirs = ['/usr/X11R6/include'],
> 506c506
> <
> ---
> > other=None
> 531,532c531,532
> <        headers = headers,
> <        include_dirs = ['Numerical/Include']
> ---
> >        headers = headers,
> >        include_dirs = ['Numerical/Include','/usr/X11R6/include']
>
> After making those changes I progress quite a way until it borks.  Here
> is the output:
>
> Script started on Mon Nov  5 18:31:49 2001
> Numeric Version 20.1.1
> running build
> running build_py
> not copying ./setup.py (output up-to-date)
> not copying ./__init__.py (output up-to-date)
> not copying ./build_clib_new.py (output up-to-date)
> not copying ./build_flib.py (output up-to-date)
> not copying ./data_store.py (output up-to-date)
> not copying ./misc.py (output up-to-date)
> not copying ./dumb_shelve.py (output up-to-date)
> not copying ./dumbdbm_patched.py (output up-to-date)
> not copying ./fortran_support.py (output up-to-date)
> not copying ./handy.py (output up-to-date)
> not copying ./helpmod.py (output up-to-date)
> not copying ./limits.py (output up-to-date)
> not copying ./proc.py (output up-to-date)
> not copying ./saved_values.py (output up-to-date)
> not copying ./scipy_tempfile.py (output up-to-date)
> not copying ./scipy_test.py (output up-to-date)
> not copying ./scipy_version.py (output up-to-date)
> not copying ./sync.py (output up-to-date)
> warning: build_py: package init file './tests/__init__.py' not found (or
> not a regular file)
> not copying ./tests/test_limits.py (output up-to-date)
> not copying ./tests/test_misc.py (output up-to-date)
> not copying gui_thread/__init__.py (output up-to-date)
> not copying gui_thread/examples.py (output up-to-date)
> not copying gui_thread/gui_thread_guts.py (output up-to-date)
> not copying gui_thread/main.py (output up-to-date)
> not copying ./plt/__init__.py (output up-to-date)
> not copying ./plt/dumb_shelve.py (output up-to-date)
> not copying ./plt/dumbdbm_patched.py (output up-to-date)
> not copying ./plt/interface.py (output up-to-date)
> not copying ./plt/plot_objects.py (output up-to-date)
> not copying ./plt/plot_utility.py (output up-to-date)
> not copying ./plt/wxplt.py (output up-to-date)
> not copying ./gplt/__init__.py (output up-to-date)
> not copying ./gplt/interface.py (output up-to-date)
> not copying ./gplt/new_plot.py (output up-to-date)
> not copying ./gplt/pyPlot.py (output up-to-date)
> not copying ./cluster/__init__.py (output up-to-date)
> not copying ./cluster/setup.py (output up-to-date)
> not copying ./cluster/vq.py (output up-to-date)
> warning: build_py: package init file './cluster/tests/__init__.py' not
> found (or not a regular file)
> not copying ./cluster/tests/vq_test.py (output up-to-date)
> not copying ./cow/__init__.py (output up-to-date)
> not copying ./cow/cow.py (output up-to-date)
> not copying ./cow/herd.py (output up-to-date)
> not copying ./cow/sync_cluster.py (output up-to-date)
> not copying ./ga/__init__.py (output up-to-date)
> not copying ./ga/algorithm.py (output up-to-date)
> not copying ./ga/examples.py (output up-to-date)
> not copying ./ga/ga_gnm.py (output up-to-date)
> not copying ./ga/ga_list.py (output up-to-date)
> not copying ./ga/ga_util.py (output up-to-date)
> not copying ./ga/gene.py (output up-to-date)
> not copying ./ga/genome.py (output up-to-date)
> not copying ./ga/language.py (output up-to-date)
> not copying ./ga/parallel_pop.py (output up-to-date)
> not copying ./ga/population.py (output up-to-date)
> not copying ./ga/scaling.py (output up-to-date)
> not copying ./ga/selection.py (output up-to-date)
> not copying ./ga/tree.py (output up-to-date)
> not copying ./ga/tree_opt.py (output up-to-date)
> not copying ./compiler/__init__.py (output up-to-date)
> not copying ./compiler/build_tools.py (output up-to-date)
> not copying ./compiler/code_blocks.py (output up-to-date)
> not copying ./compiler/compile_code.py (output up-to-date)
> not copying ./compiler/lib2def.py (output up-to-date)
> not copying ./compiler/misc.py (output up-to-date)
> not copying ./compiler/size_check.py (output up-to-date)
> not copying ./compiler/slice_handler.py (output up-to-date)
> warning: build_py: package init file './compiler/tests/__init__.py' not
> found (or not a regular file)
> not copying ./compiler/tests/test_compile_code.py (output up-to-date)
> not copying ./compiler/tests/test_size_check.py (output up-to-date)
> not copying ./compiler/tests/test_slice_handler.py (output up-to-date)
> not copying ./io/__init__.py (output up-to-date)
> not copying ./io/mio.py (output up-to-date)
> not copying ./io/array_import.py (output up-to-date)
> not copying ./signal/__init__.py (output up-to-date)
> not copying ./signal/bsplines.py (output up-to-date)
> not copying ./signal/filter_design.py (output up-to-date)
> not copying ./signal/signaltools.py (output up-to-date)
> not copying ./stats/__init__.py (output up-to-date)
> not copying ./stats/new_stats.py (output up-to-date)
> not copying ./stats/pstat.py (output up-to-date)
> not copying ./stats/rv.py (output up-to-date)
> not copying ./stats/stats.py (output up-to-date)
> not copying ./xplt/GistPlotter.py (output up-to-date)
> not copying ./xplt/Graphics.py (output up-to-date)
> not copying ./xplt/Mplot.py (output up-to-date)
> not copying ./xplt/NarPlotter.py (output up-to-date)
> not copying ./xplt/__init__.py (output up-to-date)
> not copying ./xplt/animation2d.py (output up-to-date)
> not copying ./xplt/berts.py (output up-to-date)
> not copying ./xplt/cellarray.py (output up-to-date)
> not copying ./xplt/colorbar.py (output up-to-date)
> not copying ./xplt/curve.py (output up-to-date)
> not copying ./xplt/demo5.py (output up-to-date)
> not copying ./xplt/ezplot.py (output up-to-date)
> not copying ./xplt/eztest.py (output up-to-date)
> not copying ./xplt/gist.py (output up-to-date)
> not copying ./xplt/gist3dhelp.py (output up-to-date)
> not copying ./xplt/gistdemohigh.py (output up-to-date)
> not copying ./xplt/gistdemolow.py (output up-to-date)
> not copying ./xplt/gistmeshtest.py (output up-to-date)
> not copying ./xplt/gisttest2d.py (output up-to-date)
> not copying ./xplt/gisttest3d.py (output up-to-date)
> not copying ./xplt/graftest2d.py (output up-to-date)
> not copying ./xplt/graftypes.py (output up-to-date)
> not copying ./xplt/graph.py (output up-to-date)
> not copying ./xplt/graph2d.py (output up-to-date)
> not copying ./xplt/graph3d.py (output up-to-date)
> not copying ./xplt/helpmod.py (output up-to-date)
> not copying ./xplt/lines.py (output up-to-date)
> not copying ./xplt/mesh3d.py (output up-to-date)
> not copying ./xplt/meshtest.py (output up-to-date)
> not copying ./xplt/movie.py (output up-to-date)
> not copying ./xplt/nicks.py (output up-to-date)
> not copying ./xplt/pl3d.py (output up-to-date)
> not copying ./xplt/plane.py (output up-to-date)
> not copying ./xplt/plwf.py (output up-to-date)
> not copying ./xplt/polymap.py (output up-to-date)
> not copying ./xplt/quadmesh.py (output up-to-date)
> not copying ./xplt/region.py (output up-to-date)
> not copying ./xplt/shapetest.py (output up-to-date)
> not copying ./xplt/slice3.py (output up-to-date)
> not copying ./xplt/sphereisos.py (output up-to-date)
> not copying ./xplt/surface.py (output up-to-date)
> not copying ./xplt/surftest3d.py (output up-to-date)
> not copying ./xplt/surftest4d.py (output up-to-date)
> not copying ./xplt/twograftest2d.py (output up-to-date)
> not copying ./xplt/write_style.py (output up-to-date)
> not copying ./xplt/yorick.py (output up-to-date)
> not copying ./fft/FFT2.py (output up-to-date)
> not copying ./fft/FFT2threads.py (output up-to-date)
> not copying ./fft/FFTWthreads.py (output up-to-date)
> not copying ./fft/__init__.py (output up-to-date)
> not copying ./fft/benchFFT2.py (output up-to-date)
> not copying ./fft/benchFFT2threads.py (output up-to-date)
> not copying ./fft/benchFFTWthreads.py (output up-to-date)
> not copying ./special/__init__.py (output up-to-date)
> not copying ./special/gendoc.py (output up-to-date)
> not copying ./special/special.py (output up-to-date)
> not copying ./interpolate/__init__.py (output up-to-date)
> not copying ./interpolate/common_routines.py (output up-to-date)
> not copying ./interpolate/fitpack.py (output up-to-date)
> not copying ./interpolate/interpolate.py (output up-to-date)
> not copying ./optimize/__init__.py (output up-to-date)
> not copying ./optimize/common_routines.py (output up-to-date)
> not copying ./optimize/minpack.py (output up-to-date)
> not copying ./optimize/optimize.py (output up-to-date)
> not copying ./integrate/__init__.py (output up-to-date)
> not copying ./integrate/common_routines.py (output up-to-date)
> not copying ./integrate/odepack.py (output up-to-date)
> not copying ./integrate/orthogonal.py (output up-to-date)
> not copying ./integrate/quadpack.py (output up-to-date)
> not copying ./integrate/quadrature.py (output up-to-date)
> warning: build_py: package init file './Numerical/Lib/__init__.py' not
> found (or not a regular file)
> not copying ./Numerical/Lib/ArrayPrinter.py (output up-to-date)
> not copying ./Numerical/Lib/LinearAlgebra.py (output up-to-date)
> not copying ./Numerical/Lib/MLab.py (output up-to-date)
> not copying ./Numerical/Lib/Matrix.py (output up-to-date)
> not copying ./Numerical/Lib/Numeric.py (output up-to-date)
> not copying ./Numerical/Lib/Precision.py (output up-to-date)
> not copying ./Numerical/Lib/RandomArray.py (output up-to-date)
> not copying ./Numerical/Lib/UserArray.py (output up-to-date)
> not copying ./Numerical/Lib/numeric_version.py (output up-to-date)
> warning: build_py: package init file './tests/__init__.py' not found (or
> not a regular file)
> warning: build_py: package init file './cluster/tests/__init__.py' not
> found (or not a regular file)
> warning: build_py: package init file './compiler/tests/__init__.py' not
> found (or not a regular file)
> warning: build_py: package init file './Numerical/Lib/__init__.py' not
> found (or not a regular file)
> running build_clib
> building 'gist' library
> skipping xplt/gist/cgm.c (build/temp.freebsd-4.4-STABLE-i386-2.1/cgm.o
> up-to-date)
> skipping xplt/gist/clip.c (build/temp.freebsd-4.4-STABLE-i386-2.1/clip.o
> up-to-date)
> skipping xplt/gist/dispas.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/dispas.o up-to-date)
> skipping xplt/gist/dispat.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/dispat.o up-to-date)
> skipping xplt/gist/dispax.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/dispax.o up-to-date)
> skipping xplt/gist/draw.c (build/temp.freebsd-4.4-STABLE-i386-2.1/draw.o
> up-to-date)
> skipping xplt/gist/draw0.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/draw0.o up-to-date)
> skipping xplt/gist/engine.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/engine.o up-to-date)
> skipping xplt/gist/gcntr.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/gcntr.o up-to-date)
> skipping xplt/gist/gist.c (build/temp.freebsd-4.4-STABLE-i386-2.1/gist.o
> up-to-date)
> skipping xplt/gist/gread.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/gread.o up-to-date)
> skipping xplt/gist/gtext.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/gtext.o up-to-date)
> skipping xplt/gist/hlevel.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/hlevel.o up-to-date)
> skipping xplt/gist/host.c (build/temp.freebsd-4.4-STABLE-i386-2.1/host.o
> up-to-date)
> skipping xplt/gist/osys.c (build/temp.freebsd-4.4-STABLE-i386-2.1/osys.o
> up-to-date)
> skipping xplt/gist/ps.c (build/temp.freebsd-4.4-STABLE-i386-2.1/ps.o
> up-to-date)
> skipping xplt/gist/tick.c (build/temp.freebsd-4.4-STABLE-i386-2.1/tick.o
> up-to-date)
> skipping xplt/gist/tick60.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/tick60.o up-to-date)
> skipping xplt/gist/xbasic.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/xbasic.o up-to-date)
> skipping xplt/gist/xfancy.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/xfancy.o up-to-date)
> skipping xplt/gist/xfont.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/xfont.o up-to-date)
> skipping xplt/gist/xicky.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/xicky.o up-to-date)
> skipping build/temp.freebsd-4.4-STABLE-i386-2.1/libgist.a (up-to-date)
> building 'c_misc' library
> skipping special/c_misc/besselpoly.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/besselpoly.o up-to-date)
> skipping build/temp.freebsd-4.4-STABLE-i386-2.1/libc_misc.a (up-to-date)
> building 'cephes' library
> skipping special/cephes/airy.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/airy.o up-to-date)
> skipping special/cephes/bdtr.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/bdtr.o up-to-date)
> skipping special/cephes/beta.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/beta.o up-to-date)
> skipping special/cephes/btdtr.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/btdtr.o up-to-date)
> skipping special/cephes/cbrt.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/cbrt.o up-to-date)
> skipping special/cephes/chbevl.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/chbevl.o up-to-date)
> skipping special/cephes/chdtr.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/chdtr.o up-to-date)
> skipping special/cephes/clog.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/clog.o up-to-date)
> skipping special/cephes/cmplx.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/cmplx.o up-to-date)
> skipping special/cephes/const.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/const.o up-to-date)
> skipping special/cephes/cpmul.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/cpmul.o up-to-date)
> skipping special/cephes/dawsn.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/dawsn.o up-to-date)
> skipping special/cephes/ellie.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/ellie.o up-to-date)
> skipping special/cephes/ellik.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/ellik.o up-to-date)
> skipping special/cephes/ellpe.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/ellpe.o up-to-date)
> skipping special/cephes/ellpj.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/ellpj.o up-to-date)
> skipping special/cephes/ellpk.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/ellpk.o up-to-date)
> skipping special/cephes/euclid.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/euclid.o up-to-date)
> skipping special/cephes/exp.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/exp.o up-to-date)
> skipping special/cephes/exp10.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/exp10.o up-to-date)
> skipping special/cephes/exp2.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/exp2.o up-to-date)
> skipping special/cephes/expn.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/expn.o up-to-date)
> skipping special/cephes/fabs.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/fabs.o up-to-date)
> skipping special/cephes/fdtr.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/fdtr.o up-to-date)
> skipping special/cephes/fftr.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/fftr.o up-to-date)
> skipping special/cephes/floor.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/floor.o up-to-date)
> skipping special/cephes/fresnl.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/fresnl.o up-to-date)
> skipping special/cephes/gamma.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/gamma.o up-to-date)
> skipping special/cephes/gdtr.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/gdtr.o up-to-date)
> skipping special/cephes/gels.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/gels.o up-to-date)
> skipping special/cephes/hyp2f1.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/hyp2f1.o up-to-date)
> skipping special/cephes/hyperg.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/hyperg.o up-to-date)
> skipping special/cephes/i0.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/i0.o up-to-date)
> skipping special/cephes/i1.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/i1.o up-to-date)
> skipping special/cephes/igam.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/igam.o up-to-date)
> skipping special/cephes/igami.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/igami.o up-to-date)
> skipping special/cephes/incbet.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/incbet.o up-to-date)
> skipping special/cephes/incbi.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/incbi.o up-to-date)
> skipping special/cephes/isnan.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/isnan.o up-to-date)
> skipping special/cephes/iv.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/iv.o up-to-date)
> skipping special/cephes/j0.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/j0.o up-to-date)
> skipping special/cephes/j1.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/j1.o up-to-date)
> skipping special/cephes/jn.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/jn.o up-to-date)
> skipping special/cephes/jv.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/jv.o up-to-date)
> skipping special/cephes/k0.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/k0.o up-to-date)
> skipping special/cephes/k1.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/k1.o up-to-date)
> skipping special/cephes/kn.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/kn.o up-to-date)
> skipping special/cephes/kolmogorov.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/kolmogorov.o up-to-date)
> skipping special/cephes/levnsn.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/levnsn.o up-to-date)
> skipping special/cephes/log.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/log.o up-to-date)
> skipping special/cephes/log10.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/log10.o up-to-date)
> skipping special/cephes/log2.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/log2.o up-to-date)
> skipping special/cephes/lsqrt.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/lsqrt.o up-to-date)
> skipping special/cephes/mmmpy.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/mmmpy.o up-to-date)
> skipping special/cephes/mtherr.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/mtherr.o up-to-date)
> skipping special/cephes/mtransp.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/mtransp.o up-to-date)
> skipping special/cephes/mvmpy.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/mvmpy.o up-to-date)
> skipping special/cephes/nbdtr.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/nbdtr.o up-to-date)
> skipping special/cephes/ndtr.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/ndtr.o up-to-date)
> skipping special/cephes/ndtri.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/ndtri.o up-to-date)
> skipping special/cephes/pdtr.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/pdtr.o up-to-date)
> skipping special/cephes/polevl.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/polevl.o up-to-date)
> skipping special/cephes/polmisc.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/polmisc.o up-to-date)
> skipping special/cephes/polrt.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/polrt.o up-to-date)
> skipping special/cephes/polyn.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/polyn.o up-to-date)
> skipping special/cephes/pow.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/pow.o up-to-date)
> skipping special/cephes/powi.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/powi.o up-to-date)
> skipping special/cephes/psi.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/psi.o up-to-date)
> skipping special/cephes/rgamma.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/rgamma.o up-to-date)
> skipping special/cephes/round.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/round.o up-to-date)
> skipping special/cephes/setprec.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/setprec.o up-to-date)
> skipping special/cephes/shichi.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/shichi.o up-to-date)
> skipping special/cephes/sici.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/sici.o up-to-date)
> skipping special/cephes/simpsn.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/simpsn.o up-to-date)
> skipping special/cephes/simq.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/simq.o up-to-date)
> skipping special/cephes/sincos.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/sincos.o up-to-date)
> skipping special/cephes/sindg.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/sindg.o up-to-date)
> skipping special/cephes/spence.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/spence.o up-to-date)
> skipping special/cephes/sqrt.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/sqrt.o up-to-date)
> skipping special/cephes/stdtr.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/stdtr.o up-to-date)
> skipping special/cephes/struve.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/struve.o up-to-date)
> skipping special/cephes/tandg.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/tandg.o up-to-date)
> skipping special/cephes/time-it.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/time-it.o up-to-date)
> skipping special/cephes/unity.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/unity.o up-to-date)
> skipping special/cephes/yn.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/yn.o up-to-date)
> skipping special/cephes/zeta.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/zeta.o up-to-date)
> skipping special/cephes/zetac.c
> (build/temp.freebsd-4.4-STABLE-i386-2.1/zetac.o up-to-date)
> skipping build/temp.freebsd-4.4-STABLE-i386-2.1/libcephes.a (up-to-date)
> running build_flib
> Gnu 2.95.3
>  building 'amos' library
> ar -cur  build/temp.freebsd-4.4-STABLE-i386-2.1/libamos.a
> build/temp.freebsd-4.4-STABLE-i386-2.1/dgamln.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dsclmr.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/fdump.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/zabs.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/zacai.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/zacon.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/zairy.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/zasyi.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/zbesh.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/zbesi.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/zbesj.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/zbesk.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/zbesy.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/zbinu.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/zbiry.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/zbknu.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/zbuni.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/zbunk.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/zdiv.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/zexp.o
> ar -cur  build/temp.freebsd-4.4-STABLE-i386-2.1/libamos.a
> build/temp.freebsd-4.4-STABLE-i386-2.1/zkscl.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/zlog.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/zmlri.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/zmlt.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/zrati.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/zs1s2.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/zseri.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/zshch.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/zsqrt.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/zuchk.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/zunhj.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/zuni1.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/zuni2.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/zunik.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/zunk1.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/zunk2.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/zuoik.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/zwrsk.o
>  building 'toms' library
> ar -cur  build/temp.freebsd-4.4-STABLE-i386-2.1/libtoms.a
> build/temp.freebsd-4.4-STABLE-i386-2.1/wofz.o
>  building 'fitpack' library
> ar -cur  build/temp.freebsd-4.4-STABLE-i386-2.1/libfitpack.a
> build/temp.freebsd-4.4-STABLE-i386-2.1/bispev.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/clocur.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/cocosp.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/concon.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/concur.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/cualde.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/curev.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/curfit.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dblint.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/evapol.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/fourco.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/fpader.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/fpadno.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/fpadpo.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/fpback.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/fpbacp.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/fpbfout.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/fpbisp.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/fpbspl.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/fpchec.o
> ar -cur  build/temp.freebsd-4.4-STABLE-i386-2.1/libfitpack.a
> build/temp.freebsd-4.4-STABLE-i386-2.1/fpched.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/fpchep.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/fpclos.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/fpcoco.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/fpcons.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/fpcosp.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/fpcsin.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/fpcurf.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/fpcuro.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/fpcyt1.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/fpcyt2.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/fpdeno.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/fpdisc.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/fpfrno.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/fpgivs.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/fpgrdi.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/fpgrpa.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/fpgrre.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/fpgrsp.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/fpinst.o
> ar -cur  build/temp.freebsd-4.4-STABLE-i386-2.1/libfitpack.a
> build/temp.freebsd-4.4-STABLE-i386-2.1/fpintb.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/fpknot.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/fpopdi.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/fpopsp.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/fporde.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/fppara.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/fppasu.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/fpperi.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/fppocu.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/fppogr.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/fppola.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/fprank.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/fprati.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/fpregr.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/fprota.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/fprppo.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/fprpsp.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/fpseno.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/fpspgr.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/fpsphe.o
> ar -cur  build/temp.freebsd-4.4-STABLE-i386-2.1/libfitpack.a
> build/temp.freebsd-4.4-STABLE-i386-2.1/fpsuev.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/fpsurf.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/fpsysy.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/fptrnp.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/fptrpe.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/insert.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/parcur.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/parder.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/parsur.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/percur.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/pogrid.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/polar.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/profil.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/regrid.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/splev.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/spalde.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/spgrid.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/sphere.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/splder.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/splint.o
> ar -cur  build/temp.freebsd-4.4-STABLE-i386-2.1/libfitpack.a
> build/temp.freebsd-4.4-STABLE-i386-2.1/sproot.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/surev.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/surfit.o
>  building 'minpack' library
> ar -cur  build/temp.freebsd-4.4-STABLE-i386-2.1/libminpack.a
> build/temp.freebsd-4.4-STABLE-i386-2.1/chkder.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dogleg.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dpmpar.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/enorm.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/fdjac1.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/fdjac2.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/hybrd.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/hybrd1.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/hybrj.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/hybrj1.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/lmder.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/lmder1.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/lmdif.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/lmdif1.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/lmpar.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/lmstr.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/lmstr1.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/qform.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/qrfac.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/qrsolv.o
> ar -cur  build/temp.freebsd-4.4-STABLE-i386-2.1/libminpack.a
> build/temp.freebsd-4.4-STABLE-i386-2.1/r1mpyq.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/r1updt.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/rwupdt.o
>  building 'quadpack' library
> ar -cur  build/temp.freebsd-4.4-STABLE-i386-2.1/libquadpack.a
> build/temp.freebsd-4.4-STABLE-i386-2.1/dqag.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dqage.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dqagi.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dqagie.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dqagp.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dqagpe.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dqags.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dqagse.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dqawc.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dqawce.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dqawf.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dqawfe.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dqawo.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dqawoe.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dqaws.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dqawse.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dqc25c.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dqc25f.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dqc25s.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dqcheb.o
> ar -cur  build/temp.freebsd-4.4-STABLE-i386-2.1/libquadpack.a
> build/temp.freebsd-4.4-STABLE-i386-2.1/dqelg.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dqk15.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dqk15i.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dqk15w.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dqk21.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dqk31.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dqk41.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dqk51.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dqk61.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dqmomo.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dqng.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dqpsrt.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dqwgtc.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dqwgtf.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dqwgts.o
>  building 'odepack' library
> ar -cur  build/temp.freebsd-4.4-STABLE-i386-2.1/libodepack.a
> build/temp.freebsd-4.4-STABLE-i386-2.1/adjlr.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/aigbt.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/ainvg.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/blkdta000.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/bnorm.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/cdrv.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/cfode.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/cntnzu.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/ddasrt.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/ddassl.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/decbt.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/ewset.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/fnorm.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/intdy.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/iprep.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/jgroup.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/lsoda.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/lsodar.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/lsode.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/lsodes.o
> ar -cur  build/temp.freebsd-4.4-STABLE-i386-2.1/libodepack.a
> build/temp.freebsd-4.4-STABLE-i386-2.1/lsodi.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/lsoibt.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/md.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/mdi.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/mdm.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/mdp.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/mdu.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/nnfc.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/nnsc.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/nntc.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/nroc.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/nsfc.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/odrv.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/pjibt.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/prep.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/prepj.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/prepji.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/prja.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/prjs.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/rchek.o
> ar -cur  build/temp.freebsd-4.4-STABLE-i386-2.1/libodepack.a
> build/temp.freebsd-4.4-STABLE-i386-2.1/roots.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/slsbt.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/slss.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/solbt.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/solsy.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/srcar.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/srcma.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/srcms.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/srcom.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/sro.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/stoda.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/stode.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/stodi.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/vmnorm.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/vnorm.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/xerrwv.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/xsetf.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/xsetun.o
>  building 'linpack_lite' library
> ar -cur  build/temp.freebsd-4.4-STABLE-i386-2.1/liblinpack_lite.a
> build/temp.freebsd-4.4-STABLE-i386-2.1/dgbfa.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dgbsl.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dgefa.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dgesl.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dgtsl.o
>  building 'blas' library
> ar -cur  build/temp.freebsd-4.4-STABLE-i386-2.1/libblas.a
> build/temp.freebsd-4.4-STABLE-i386-2.1/caxpy.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/ccopy.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/cdotc.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/cdotu.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/cgbmv.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/cgemm.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/cgemv.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/cgerc.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/cgeru.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/chbmv.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/chemm.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/chemv.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/cher.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/cher2.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/cher2k.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/cherk.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/chpmv.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/chpr.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/chpr2.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/crotg.o
> ar -cur  build/temp.freebsd-4.4-STABLE-i386-2.1/libblas.a
> build/temp.freebsd-4.4-STABLE-i386-2.1/cscal.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/csscal.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/cswap.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/csymm.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/csyr2k.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/csyrk.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/ctbmv.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/ctbsv.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/ctpmv.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/ctpsv.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/ctrmm.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/ctrmv.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/ctrsm.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/ctrsv.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dasum.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/daxpy.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dcabs1.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dcopy.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/ddot.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dgbmv.o
> ar -cur  build/temp.freebsd-4.4-STABLE-i386-2.1/libblas.a
> build/temp.freebsd-4.4-STABLE-i386-2.1/dgemm.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dgemv.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dger.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dnrm2.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/drot.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/drotg.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dsbmv.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dscal.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dspmv.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dspr.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dspr2.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dswap.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dsymm.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dsymv.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dsyr.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dsyr2.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dsyr2k.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dsyrk.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dtbmv.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dtbsv.o
> ar -cur  build/temp.freebsd-4.4-STABLE-i386-2.1/libblas.a
> build/temp.freebsd-4.4-STABLE-i386-2.1/dtpmv.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dtpsv.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dtrmm.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dtrmv.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dtrsm.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dtrsv.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dzasum.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/dznrm2.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/icamax.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/idamax.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/isamax.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/izamax.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/lsame.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/sasum.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/saxpy.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/scasum.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/scnrm2.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/scopy.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/sdot.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/sgbmv.o
> ar -cur  build/temp.freebsd-4.4-STABLE-i386-2.1/libblas.a
> build/temp.freebsd-4.4-STABLE-i386-2.1/sgemm.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/sgemv.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/sger.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/snrm2.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/srot.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/srotg.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/ssbmv.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/sscal.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/sspmv.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/sspr.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/sspr2.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/sswap.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/ssymm.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/ssymv.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/ssyr.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/ssyr2.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/ssyr2k.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/ssyrk.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/stbmv.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/stbsv.o
> ar -cur  build/temp.freebsd-4.4-STABLE-i386-2.1/libblas.a
> build/temp.freebsd-4.4-STABLE-i386-2.1/stpmv.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/stpsv.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/strmm.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/strmv.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/strsm.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/strsv.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/xerbla.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/zaxpy.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/zcopy.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/zdotc.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/zdotu.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/zdscal.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/zgbmv.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/zgemm.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/zgemv.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/zgerc.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/zgeru.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/zhbmv.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/zhemm.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/zhemv.o
> ar -cur  build/temp.freebsd-4.4-STABLE-i386-2.1/libblas.a
> build/temp.freebsd-4.4-STABLE-i386-2.1/zher.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/zher2.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/zher2k.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/zherk.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/zhpmv.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/zhpr.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/zhpr2.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/zrotg.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/zscal.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/zswap.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/zsymm.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/zsyr2k.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/zsyrk.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/ztbmv.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/ztbsv.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/ztpmv.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/ztpsv.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/ztrmm.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/ztrmv.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/ztrsm.o
> ar -cur  build/temp.freebsd-4.4-STABLE-i386-2.1/libblas.a
> build/temp.freebsd-4.4-STABLE-i386-2.1/ztrsv.o
>  building 'mach' library
> ar -cur  build/temp.freebsd-4.4-STABLE-i386-2.1/libmach.a
> build/temp.freebsd-4.4-STABLE-i386-2.1/d1mach.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/i1mach.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/r1mach.o
> build/temp.freebsd-4.4-STABLE-i386-2.1/xerror.o
> running build_ext
> building 'scipy.cluster._vq' extension
> skipping cluster/src/vq_wrap.cpp
> (build/temp.freebsd-4.4-STABLE-i386-2.1/vq_wrap.o up-to-date)
> cc -shared -pthread build/temp.freebsd-4.4-STABLE-i386-2.1/vq_wrap.o -L
> -Lbuild/temp.freebsd-4.4-STABLE-i386-2.1 -lamos -ltoms -lfitpack
> -lminpack -lquadpack -lodepack -llinpack_lite -lblas -lmach -lg2c -lgist
> -lc_misc -lcephes -o
> build/lib.freebsd-4.4-STABLE-i386-2.1/scipy/cluster/_vq.so
> /usr/libexec/elf/ld: cannot find -lamos
> error: command 'cc' failed with exit status 1
>
> Script done on Mon Nov  5 18:31:54 2001
>
> Sincerely,
> Rob.
>
> --
> The Numeric Python EM Project
>
> www.members.home.net/europax
> _______________________________________________
> Scipy-dev mailing list
> Scipy-dev at scipy.net
> http://www.scipy.net/mailman/listinfo/scipy-dev





More information about the SciPy-Dev mailing list