Differences between revisions 14 and 15
Revision 14 as of 2009-08-10 19:12:13
Size: 28463
Editor: PeterJeremy
Comment: Include 4.1.1.rc2 and test results
Revision 15 as of 2009-10-01 19:17:50
Size: 28451
Editor: PeterJeremy
Comment:
Deletions are marked like this. Additions are marked like this.
Line 27: Line 27:
 * Unpack sage-4.1.tar or sage-4.1.1.rc2.tar
 * `cd sage-4.1` or `cd sage-4.1.1.rc2`
 * Unpack [[attachment:sage-4.1.patch]] or [[attachment:sage-4.1.1.rc2.patch]] which includes the following:
 * Unpack sage-4.1.tar or sage-4.1.1.tar
 * `cd sage-4.1` or `cd sage-4.1.1`
 * Unpack [[attachment:sage-4.1.patch]] or [[attachment:sage-4.1.1.patch]] which includes the following:

Sage FreeBSD 7.x and 8.x build notes for Sage 4.1 and 4.1.1

Contents

Overall build environment differences

  • sh and /bin/sh are a POSIX shell, rather than bash.

  • make is the BSD make, not GNU make

Preparatory work

  • Install ports/shells/bash or ports/shells/bash3 (I used 4.0.24)
  • Install ports/devel/gmake
  • Install ports/lang/gcc43 - FreeBSD no longer ships with a Fortran compiler by default.
  • Install ports/devel/autoconf262
  • Install ports/converters/libiconv
  • Ensure POSIX semaphores are available. This is required for ecl (at least). These are not available by default before FreeBSD 7.3 or 8.0 and should be enabled by either kldload sem or building a kernel with options P1003_1B_SEMAPHORES. If they are not available, building ecl will fail with Bad system call.

It's possible there are other dependencies, I haven't tried building sage in a clean (tinderbox) environment.

Building Sage

On FreeBSD 7.x

  • Unpack sage-4.1.tar or sage-4.1.1.tar
  • cd sage-4.1 or cd sage-4.1.1

  • Unpack sage-4.1.patch or sage-4.1.1.patch which includes the following:

    • Create symlinks to mask name differences.
    • ln -s /usr/local/bin/gmake local/bin/make

    • ln -s /usr/local/bin/bash local/bin/sh

    • ln -s /usr/local/bin/gcc43 local/bin/gcc

    • ln -s /usr/local/bin/g++43 local/bin/g++

    • ln -s /usr/local/bin/gfortran43 local/bin/gfortran

    • Various patches as described below into spkg/patches

  • Build Sage
    • SAGE_FORTRAN=/usr/local/bin/gfortran43 SAGE_FORTRAN_LIB=/usr/local/lib/gcc43/libgfortran.so gmake

Current Status

Currently, the following tests fail on FreeBSD 7.2/i386 (the same tests fail on both versions of sage). Full logs at sage-4.1.freebsd32.test.log and sage-4.1.1.rc2.freebsd32.test.log.

        sage -t  "4.1/devel/sage/sage/ext/fast_callable.pyx"
        sage -t  "4.1/devel/sage/sage/rings/number_field/number_field.py"
        sage -t  "4.1/devel/sage/sage/rings/tests.py"
        sage -t  "4.1/devel/sage/sage/rings/integer.pyx"
        sage -t  "4.1/devel/sage/sage/schemes/elliptic_curves/period_lattice.py"
        sage -t  "4.1/devel/sage/sage/misc/getusage.py"
        sage -t  "4.1/devel/sage/sage/libs/pari/gen.pyx"

The actual failures are a mixture of:

  • Incorrect signs on (non-small) real or imaginary parts of complex numbers
  • No csin(), f_cdf()
  • Slight numerical differences eg '-0.629960524947437' instead of '-0.62996052494743...'.
  • Whitespace differences
  • Exception "memory usage not implemented"

Notes on spkgs and attached patches

The following lists versions for sage-4.1. The actual patch content remains the same for sage-4.1.1.rc2, though some patch names (as well as internal pathnames) change.

base.patch

  • The patch to base/sage-spkg enables the local patching that the rest of the patches rely on. Note that this patch is not intended to be merged into sage but provides a convenient mechanism to apply local patches without requiring that the spkg files are locally re-rolled.

atlas-3.8.3.p5

Various fixes to make it compile on FreeBSD

matplotlib-0.98.5.3rc0-svn6910.p4

Add hooks to ensure that the local Sage versions of dependencies are used by FreeBSD. Otherwise you get:

BUILDING MATPLOTLIB
            matplotlib: 0.98.6svn
                python: 2.5.2 (r252:60911, Apr  1 2009, 08:50:05)  [GCC
                        4.3.4 20090326 (prerelease)]
              platform: freebsd7

REQUIRED DEPENDENCIES
                 numpy: no
                        * You must install numpy 1.1 or later to build
                        * matplotlib.
Error building matplotlib package.

Add support for FreeBSD later than 6.x. Otherwise you get :

REQUIRED DEPENDENCIES
Traceback (most recent call last):
  File "setup.py", line 119, in <module>
    if not check_for_numpy():
  File "/home/pjeremy/sage-3.4/spkg/build/matplotlib-0.98.5.3rc0-svn6910.p3/src/setupext.py", line 499, in check_for_numpy
    add_base_flags(module)
  File "/home/pjeremy/sage-3.4/spkg/build/matplotlib-0.98.5.3rc0-svn6910.p3/src/setupext.py", line 320, in add_base_flags
    [os.path.join(p, 'include') for p in basedir[sys.platform] ])
KeyError: 'freebsd7'
Error building matplotlib package.

gcc4.3 (though not gcc4.2) appears to define putchar() in a way that breaks the putchar() definitions inside ttconv. I couldn't quickly identify what the underlying cause was so I took the easy way out and undef'd the offending putchar() macro.

Individual character bounding boxes in AFM files do not have to be integral so convert each bounding box to a list of floats, rather than a list of ints. This corrects a problem where most of the tests would fail with ValueError: invalid literal for int() with base 10: '539.621'.

All three sub-patches are in #5873

numpy-1.2.0.p0

  • __init__.py needs a sage-specific patch to prefer sage_fortran on FreeBSD.

  • By default, numpy references threaded atlas libraries, as well as a custom variant on the lapack library, on FreeBSD. The reasoning behind this is unclear - there is nothing in the numpy documentation to indicate whether a threaded or non-threaded atlas is needed and the publicly available SVN logs do not mention this code. A query to the numpy mailing list elicited a response that either threaded or non-threaded atlas can be used and suggesting that the special-casing for FreeBSD may be obsolete. By default, atlas is built non-threaded and r-2.6.1.p23 assumes a non-threaded atlas and fails when only the threaded libraries are installed. Based on this, the special casing for FreeBSD was removed from numpy - it now uses the same libraries irrespective of the host OS.

r-2.6.1.p23

Pass CFLAGS, CPPFLAGS and LDFLAGS from the environment into the build process. This also corrects a typo in CPPFLAGS.

Note that FreeBSD needs the path to libiconv to be explicitly specified. In theory, --with-libiconv-prefix should work but configure script is broken and ignores that path when looking for libiconv. Hard-wire /usr/local/include and /usr/local/lib via xxFLAGS.

Note that the X11 detection in spkg-install will not work anywhere other than Linux. This needs future work.

These patches are all local to Sage.

sage-4.1

  • Compiling sage/combinat/partitions_c.cc fails because FreeBSD 7.x does not define sqrtl (it was introduced in FreeBSD 8.0). As a hackish workaround, define sqrtl to be sqrt.

  • FreeBSD does not include a definition for log2() in libm. Use a simplistic definition of log2(x) = log2(e) * ln(x) - this is numerically poor but can be cleaned up later if required.

sage_scripts-4.1

Patch sage-spkg to apply local patches. This patch also disables deletion of the spkg/build/FOO temporary directories - which was useful during porting. This latter patch can be safely removed.