mirror of
https://src.fedoraproject.org/rpms/sagemath.git
synced 2025-04-21 11:19:02 -04:00
Also: - Remove configparser dependencies (bz 1706597). - Fix broken sed conversion (bz 1706234). - Fix python2 versus python3 snafu (bz 1706337, 1707166). - Build and install sagetex (bz 1706322).
12 lines
577 B
Diff
12 lines
577 B
Diff
diff -up src/module_list.py.orig src/module_list.py
|
|
--- src/module_list.py.orig 2019-06-27 11:30:20.794201914 -0600
|
|
+++ src/module_list.py 2019-06-27 11:38:23.103196674 -0600
|
|
@@ -514,7 +514,7 @@ ext_modules = [
|
|
Extension('sage.libs.lcalc.lcalc_Lfunction',
|
|
sources = ['sage/libs/lcalc/lcalc_Lfunction.pyx'],
|
|
libraries = ['m', 'ntl', 'Lfunction'],
|
|
- extra_compile_args=["-O3", "-ffast-math"],
|
|
+ extra_compile_args=["-std=gnu++11", "-ffast-math"],
|
|
language = 'c++'),
|
|
|
|
Extension('sage.libs.libecm',
|