Re: [sage-devel] Linking libraries with spkg-install.in

2021-03-19 Thread Matthias Koeppe
On Friday, March 19, 2021 at 3:38:26 PM UTC-7 Michael Orlitzky wrote: > The "with" options that allow you to specify a path actually go against > the GNU coding standards, > > https://www.gnu.org/prep/standards/html_node/Configuration.html > > Those standards aren't gospel, but the authors of a

[sage-devel] Re: https://wiki.sagemath.org/ReleaseTours/sage-9.3

2021-03-19 Thread Matthias Koeppe
Another call for contributions to the Release Tour for the upcoming 9.3 release. So far we have: Sage 9.3 Release Tour 1. Polyhedral geometry

Re: [sage-devel] Linking libraries with spkg-install.in

2021-03-19 Thread Michael Orlitzky
On Fri, 2021-03-19 at 09:57 -0700, Matthias Koeppe wrote: > > > FWIW, latte_int 1.7.6 has eliminated these bad tests (for presence of > header files) > in > https://github.com/latte-int/latte/commit/2011c2ec0bda70b6f7e02bdd3ed02176d427927b > The "with" options that allow you to specify a pat

[sage-devel] Re: Currently advised way to build sage from a fresh git clone

2021-03-19 Thread Matthias Koeppe
Our README.md is up to date. Unfortunately, the section "Sage Development Process" in Developer's Guide is not. https://trac.sagemath.org/ticket/29784 describes the task of updating this section - which needs help. On Friday, March 19, 2021 at 12:07:15 PM UTC-7 m.derick...@gmail.com wrote: > Hi

[sage-devel] Re: Currently advised way to build sage from a fresh git clone

2021-03-19 Thread Samuel Lelievre
Running `configure` before `make` became mandatory after - Sage Trac ticket 29316: Require ./configure before make https://trac.sagemath.org/ticket/29316 merged in Sage 9.2.beta2. With that in mind, the steps are now as follows. Clone and change to the obtained folder: ``` $ git clone ... $ c

[sage-devel] Re: Currently advised way to build sage from a fresh git clone

2021-03-19 Thread Maarten Derickx
On Friday, 19 March 2021 at 20:07:15 UTC+1 Maarten Derickx wrote: > Hi All, > > I haven't had a development version of sage for some time, and now am > setting one up again. In setting it up I found out that both my > understanding of how to do a build from a fresh git clone for some time > a

[sage-devel] Currently advised way to build sage from a fresh git clone

2021-03-19 Thread Maarten Derickx
Hi All, I haven't had a development version of sage for some time, and now am setting one up again. In setting it up I found out that both my understanding of how to do a build from a fresh git clone for some time ago, as well as the current developer documentation don't seem to matching the c

Re: [sage-devel] Linking libraries with spkg-install.in

2021-03-19 Thread Matthias Koeppe
On Friday, March 19, 2021 at 3:13:46 AM UTC-7 François Bissey wrote: > > > On 19/03/2021, at 23:05, 'jonatha...@googlemail.com' via sage-devel < > sage-...@googlegroups.com> wrote: > > > > We configure libaries with e.g. `--with-zlib="$SAGE_LOCAL"` > unconditionally. Why would this succeed, if

Re: [sage-devel] Memory leak in integer multiplication in sage?

2021-03-19 Thread Dima Pasechnik
On Thu, Mar 18, 2021 at 8:29 PM Volker Braun wrote: > > This is presumably the same memory leak as in > https://trac.sagemath.org/ticket/31340 yes, and it can be fixed by just removing custom memory allocators in ZZ. > > On Thursday, March 18, 2021 at 7:21:14 PM UTC+1 m.derick...@gmail.com wro

Re: [sage-devel] Linking libraries with spkg-install.in

2021-03-19 Thread 'jonatha...@googlemail.com' via sage-devel
Actually, the code I wrote for latte is better than I remembered. At some point I wanted to hardcode the location of the libraries. But I guess, I abandoned this (maybe because someone told me, this was a bad idea). jonatha...@googlemail.com schrieb am Freitag, 19. März 2021 um 11:38:46 UTC+1:

Re: [sage-devel] Linking libraries with spkg-install.in

2021-03-19 Thread 'Jonathan Kliem' via sage-devel
On 19.03.21 11:13, François Bissey wrote: On 19/03/2021, at 23:05, 'jonatha...@googlemail.com' via sage-devel wrote: We configure libaries with e.g. `--with-zlib="$SAGE_LOCAL"` unconditionally. Why would this succeed, if we use the systems `zlib`? It depends a bit on whether you use a pr

Re: [sage-devel] Linking libraries with spkg-install.in

2021-03-19 Thread François Bissey
> On 19/03/2021, at 23:05, 'jonatha...@googlemail.com' via sage-devel > wrote: > > We configure libaries with e.g. `--with-zlib="$SAGE_LOCAL"` unconditionally. > Why would this succeed, if we use the systems `zlib`? > It depends a bit on whether you use a properly written configure script

[sage-devel] Linking libraries with spkg-install.in

2021-03-19 Thread 'jonatha...@googlemail.com' via sage-devel
Hi, I think I made a mistake in https://trac.sagemath.org/ticket/31482, which might cause latte_int to fail building, if you use your systems cdd (which almost no one does, because the headers in cdd/ and cddlib/ are rejected currently). However, it appears that we make this mistake all over s