#20926: C++11 workarounds
-------------------------------------+-------------------------------------
       Reporter:  vbraun             |        Owner:
           Type:  defect             |       Status:  new
       Priority:  major              |    Milestone:  sage-7.3
      Component:  packages:          |   Resolution:
  standard                           |
       Keywords:  gcc6 c++11         |    Merged in:
        Authors:  Volker Braun       |    Reviewers:
Report Upstream:  N/A                |  Work issues:
         Branch:                     |       Commit:
  u/vbraun/c__11_workarounds         |  dd8be5f08e02a91bd8d3e98fa2c6ef5a393e08b4
   Dependencies:  #20927 #20741      |     Stopgaps:
  #20738                             |
-------------------------------------+-------------------------------------

Comment (by leif):

 Forgot the hunk for `module_list`:
 {{{
 #!patch
 diff --git a/src/module_list.py b/src/module_list.py
 index a49ed36..8441106 100644
 --- a/src/module_list.py
 +++ b/src/module_list.py
 @@ -926,7 +926,7 @@ ext_modules = [
                libraries = ['ntl', 'linbox', 'givaro', 'mpfr', 'gmpxx',
 'gmp'] + cblas_libs,
                library_dirs = cblas_library_dirs,
                include_dirs = cblas_include_dirs,
 -              extra_compile_args = ['-DDISABLE_COMMENTATOR'] +
 givaro_extra_compile_args),
 +              extra_compile_args = ['-std=c++98',
 '-DDISABLE_COMMENTATOR'] + givaro_extra_compile_args),

      Extension('sage.matrix.matrix_modn_dense_double',
                sources = ['sage/matrix/matrix_modn_dense_double.pyx'],
 @@ -934,7 +934,7 @@ ext_modules = [
                libraries = ['ntl', 'linbox', 'givaro', 'mpfr', 'gmpxx',
 'gmp'] + cblas_libs,
                library_dirs = cblas_library_dirs,
                include_dirs = cblas_include_dirs,
 -              extra_compile_args = ["-D_XPG6", "-DDISABLE_COMMENTATOR"]
 +              extra_compile_args = ['-std=c++98', "-D_XPG6",
 "-DDISABLE_COMMENTATOR"]
                      + m4ri_extra_compile_args +
 givaro_extra_compile_args),

      Extension('sage.matrix.matrix_modn_sparse',
 }}}

--
Ticket URL: <https://trac.sagemath.org/ticket/20926#comment:15>
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 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 https://groups.google.com/group/sage-trac.
For more options, visit https://groups.google.com/d/optout.

Reply via email to