mirror of
https://src.fedoraproject.org/rpms/sagemath.git
synced 2025-04-21 11:19:02 -04:00
Also: - Bundle ipython again; Fedora version is too far ahead. Also have to bundle prompt_toolkit since Fedora version is too far ahead of bundled ipython. - Drop LANGUAGES variable setting, now ignored by the sagemath build system. - Drop unused SAGE_CBLAS variable from /usr/bin/sage. - Do not force the C locale when launching sagemath. - Allow the user to override SAGE_DEBUG in /usr/bin/sage. - Add -ecm, -giac, and -latte patches to fix interactions with external tools. - Add -sigfpe patch from upstream.
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-01-16 09:42:41.397004883 -0700
|
|
+++ src/module_list.py 2019-01-16 09:45:43.332740109 -0700
|
|
@@ -513,7 +513,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',
|