#9160: Singular - change timestamp of file and sort out SAGE64 isssue.
------------------------------------------------------+---------------------
Reporter: drkirkby | Owner:
GeorgSWeber
Type: defect | Status:
needs_review
Priority: blocker | Milestone:
sage-4.4.4
Component: build | Keywords:
Author: David Kirkby and Willem Jan Palenstijn | Upstream: N/A
Reviewer: | Merged:
Work_issues: |
------------------------------------------------------+---------------------
Comment(by leif):
And you can substitute
{{{
if [ "x$SAGE64" = xyes ]; then
echo "64-bit of Singular"
CFLAGS="-O2 -g -m64 "; export CFLAGS
CXXFLAGS="-O2 -g -m64"; export CXXFLAGS
CPPFLAGS="-O2 -g -m64"; export CPPFLAGS
LDFLAGS="-m64 "; export LDFLAGS
DYNAMIC_KERNEL="--without-dynamic-kernel"; export DYNAMIC_KERNEL
fi
}}}
by
{{{
if [ "x$SAGE64" = xyes ]; then
echo "64-bit build of Singular"
CFLAGS="-O2 -g -m64"
CXXFLAGS="-O2 -g -m64"
CPPFLAGS="-O2 -g -m64"
LDFLAGS="-m64"; export LDFLAGS
DYNAMIC_KERNEL="--without-dynamic-kernel"; export DYNAMIC_KERNEL
fi
}}}
(Add ''"build"'' or change it to ''"Building 64-bit version of..."''; I
dont think 64 bits of Singular would be enough. The other flags are
already exported a few lines below.)
--
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/9160#comment:11>
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.