Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
Merge commit '192c8e6f5c6e5f0bd0dd02d51b5f103924a408ef' into ticket/1…
Browse files Browse the repository at this point in the history
…7090
  • Loading branch information
jdemeyer committed Oct 3, 2014
2 parents 7843e3f + 192c8e6 commit 9604069
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/module_list.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
#!/usr/bin/env python

import os, sys
from distutils.core import setup
import os
from distutils.extension import Extension
from sage.env import *
from sage.env import SAGE_LOCAL

SAGE_INC = os.path.join(SAGE_LOCAL, 'include')

Expand Down Expand Up @@ -1063,7 +1062,7 @@ def uname_specific(name, value, alternative):
extra_compile_args = ['-std=c99'] + m4ri_extra_compile_args,
# order matters for cygwin!!
libraries = ['iml', 'pari', 'ntl', 'gmp', 'm', 'flint', BLAS, BLAS2],
depends = [SAGE_INC + '/m4ri/m4ri.h']+ flint_depends),
depends = [SAGE_INC + '/m4ri/m4ri.h'] + flint_depends),

Extension('sage.matrix.matrix_integer_sparse',
sources = ['sage/matrix/matrix_integer_sparse.pyx'],
Expand All @@ -1086,10 +1085,10 @@ def uname_specific(name, value, alternative):
Extension('sage.matrix.matrix_modn_dense',
sources = ['sage/matrix/matrix_modn_dense.pyx'],
language="c++",
extra_compile_args = ["-D_XPG6"]+ m4ri_extra_compile_args,
extra_compile_args = ["-D_XPG6"] + m4ri_extra_compile_args,
# order matters for cygwin!!
libraries = ['iml', 'pari', 'ntl', 'gmp', 'm', 'flint', BLAS, BLAS2],
depends = [SAGE_INC + '/m4ri/m4ri.h']+ flint_depends),
depends = [SAGE_INC + '/m4ri/m4ri.h'] + flint_depends),

Extension('sage.matrix.matrix_modn_dense_float',
sources = ['sage/matrix/matrix_modn_dense_float.pyx'],
Expand All @@ -1101,7 +1100,8 @@ def uname_specific(name, value, alternative):
sources = ['sage/matrix/matrix_modn_dense_double.pyx'],
language="c++",
libraries = ['linbox', 'givaro', 'mpfr', 'gmpxx', 'gmp', BLAS, BLAS2],
extra_compile_args = ["-D_XPG6" '-DDISABLE_COMMENTATOR']+ m4ri_extra_compile_args + givaro_extra_compile_args),
extra_compile_args = ["-D_XPG6", "-DDISABLE_COMMENTATOR"]
+ m4ri_extra_compile_args + givaro_extra_compile_args),

Extension('sage.matrix.matrix_modn_sparse',
sources = ['sage/matrix/matrix_modn_sparse.pyx'],
Expand All @@ -1117,10 +1117,10 @@ def uname_specific(name, value, alternative):
Extension('sage.matrix.matrix_rational_dense',
sources = ['sage/matrix/matrix_rational_dense.pyx'],
language="c",
extra_compile_args = ["-std=c99", "-D_XPG6"]+ m4ri_extra_compile_args,
extra_compile_args = ["-std=c99", "-D_XPG6"] + m4ri_extra_compile_args,
# order matters for cygwin!!
libraries = ['iml', 'pari', 'ntl', 'gmp', 'm', 'flint', BLAS, BLAS2],
depends = [SAGE_INC + '/m4ri/m4ri.h']+ flint_depends),
depends = [SAGE_INC + '/m4ri/m4ri.h'] + flint_depends),

Extension('sage.matrix.matrix_rational_sparse',
sources = ['sage/matrix/matrix_rational_sparse.pyx'],
Expand Down

0 comments on commit 9604069

Please sign in to comment.