#9202: update matplotlib
---------------------------+------------------------------------------------
Reporter: jason | Owner: drkirkby
Type: defect | Status: needs_work
Priority: major | Milestone:
Component: packages | Keywords:
Author: Jason Grout | Upstream: N/A
Reviewer: | Merged:
Work_issues: |
---------------------------+------------------------------------------------
Changes (by drkirkby):
* owner: tbd => drkirkby
Comment:
I forgot to add, one other change that is needed, is a revised spkg-
install, to ensure matplotlib builds 64-bit.
{{{
if [ `uname` = "Darwin" -a "$SAGE64" = "yes" ]; then
echo "64 bit MacIntel"
CFLAGS="-O2 -g -m64 "; export CFLAGS
LDFLAGS="-m64 "; export LDFLAGS
fi
}}}
should be changed to:
{{{
if [ "x$SAGE64" = xyes ]; then
echo "Building a 64-bit version of matplotlib"
CFLAGS="-O2 -g -m64 "; export CFLAGS
LDFLAGS="-m64 "; export LDFLAGS
fi
}}}
--
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/9202#comment:3>
Sage <http://www.sagemath.org>
Sage: Creating a Viable Open Source Alternative to Magma, Maple, Mathematica,
and MATLAB
--
You received this message because you are subscribed to the Google Groups
"sage-trac" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/sage-trac?hl=en.