kcrisman wrote:
All builds well on OS X 10.4 PPC except rpy2 (known). For some reason
it does sage -b after building, at which point it byte-compiles tons of
stuff AND rebuilds the lrcalc extension - but the sage pkg was already
done installing, so I don't get why it's doing that again. And I
certainly didn't change lrcalc in between! :-)
That's because of
if is_package_installed('lrcalc'):
ext_modules.append(
Extension('sage.libs.lrcalc.lrcalc',
sources = ["sage/libs/lrcalc/lrcalc.pyx"],
include_dirs = [SAGE_INC + '/lrcalc/'],
libraries = ["lrcalc"],
depends = [SAGE_INC + "/lrcalc/symfcn.h"]), # should
include all .h
)
in module_list.py; it (presumably) didn't get *re*built.
That is, lrcalc is not a /build/ dependency of the Sage library, and if
it got built after the Sage library had been built, its extension module
will get built afterwards (upon './sage -b').
'./sage -b' is called at the end of the 'build' receipt, and many
targets (such as 'doc') also depend on that.
-leif
--
() The ASCII Ribbon Campaign
/\ Help Cure HTML E-Mail
--
You received this message because you are subscribed to the Google Groups
"sage-release" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/sage-release.
For more options, visit https://groups.google.com/d/optout.