Re: compiling ecl android on MacOSX

2016-02-29 Thread Daniel Kochmański
Pascal J. Bourguignon writes: > Summary: success compiling ecl-android on MacOSX with the above script, > and the indicated patch to ecl/src/configure. Congrats :-) > > > [pjb@larissa :0.0 android]$ cd ecl/ > [pjb@larissa :0.0 ecl]$ git status > On branch 16.1.2-rc > Your branch is up-to-date w

Re: ECL 16.1.2

2016-02-29 Thread Daniel Kochmański
Hello, Alexander Artemenko writes: > Cool! > > I've added ECL's repository to AllMyChanges and tuned parser to process > org-mode style release notes. > Now everybody can subscribe on ECL updates: > https://allmychanges.com/p/common-lisp/ECL/ nice :-) > > Daniel, could you please, explain, why v

Re: ECL 16.1.2

2016-02-29 Thread Alexander Artemenko
Cool! I've added ECL's repository to AllMyChanges and tuned parser to process org-mode style release notes. Now everybody can subscribe on ECL updates: https://allmychanges.com/p/common-lisp/ECL/ Daniel, could you please, explain, why versions in the CHANGELOG are not sequential, and stated like

Re: ecl-16.1.2: new maxima testsuite failure

2016-02-29 Thread Raymond Toy
> "Andrey" == Andrey G Grozin writes: Andrey> maxima-5.37.3 built with ecl-16.0.0 runs its testsuite without unexpected Andrey> errors. When buils with ecl-16.1.2, it fails in Andrey> Running tests in rtest8: Andrey> ** Problem 104 *** An

Re: embedding ecl without (build-program)

2016-02-29 Thread Daniel Kochmański
Thanks for the information how you have resolved the issue. As far as I see in the code, compile-file shouldn't delete files, if the names were provided: (to-delete (nconc (unless c-file (list c-pathname)) (unless h-file (list h-pathname)) (unless data-file (li

Re: embedding ecl without (build-program)

2016-02-29 Thread Juraj Variny
In the end have hacked it together using c:build-static-library, which leaves things to be desired: (let ((compiler::*USER-CC-FLAGS* "-I... put here $CFLAGS from the build system") (compiler::*USER-LD-FLAGS* "... put here $LDFLAGS from the build system... ") (objfile (compile-file "

Re: [Maxima-discuss] ecl-16.1.2: new maxima testsuite failure

2016-02-29 Thread Daniel Kochmański
I can't reproduce it on my 64-bit ArchLinux box. What flags did you built ECL with? Could you check, if the bug is present on: 4548ed7c4cd9a428d95695b6528e55d6d80cb11c and bff9aced440c47893d283d48cc251391828836a9 ? (this is before and after the new RNG implementation). Regards, Daniel Andrey G.

Re: ecl-16.1.2: new maxima testsuite failure

2016-02-29 Thread Daniel Kochmański
Thanks, I'll try investigate it today. Is this file a correct instruction on building and testing Maxima: https://sourceforge.net/p/maxima/code/ci/master/tree/INSTALL.lisp or should I perform some other steps? Regards, Daniel Andrey G. Grozin writes: > maxima-5.37.3 built with ecl-16.0.0 runs

Re: [Maxima-discuss] ecl-16.1.2: new maxima testsuite failure

2016-02-29 Thread Andrey G. Grozin
An additional bit of information: this failure happens in 64-bit Gentoo linux. In 32-bit Gentoo linux there are no unexpected errors in the testsuite. How can one debug this problem? Andrey

Re: ecl-16.1.2: new maxima testsuite failure

2016-02-29 Thread Andrey G. Grozin
On Mon, 29 Feb 2016, Daniel Kochmański wrote: I'll try investigate it today. Is this file a correct instruction on building and testing Maxima: https://sourceforge.net/p/maxima/code/ci/master/tree/INSTALL.lisp or should I perform some other steps? I simply do ./configure --enable-ecl make Af

Re: [Maxima-discuss] ecl-16.1.2: new maxima testsuite failure

2016-02-29 Thread Daniel Kochmański
Daniel Kochmański writes: > I'm usually taking the time-consuming process of bisecting ECL, unless I > already know what the problem is. Some minimal test without building the > whole maxima would be great though. > > Regards, > Daniel > > Andrey G. Grozin writes: > >> An additional bit of informa

Re: [Maxima-discuss] ecl-16.1.2: new maxima testsuite failure

2016-02-29 Thread Daniel Kochmański
I'm usually taking the time-consuming process of bisecting ECL, unless I already know what the problem is. Some minimal test without building the whole maxima would be great though. Regards, Daniel Andrey G. Grozin writes: > An additional bit of information: this failure happens in 64-bit Gentoo

ecl-16.1.2: new maxima testsuite failure

2016-02-29 Thread Andrey G. Grozin
maxima-5.37.3 built with ecl-16.0.0 runs its testsuite without unexpected errors. When buils with ecl-16.1.2, it fails in Running tests in rtest8: ** Problem 104 *** Input: ev(e5, au = 0, omega = 2) Result: - u quad_qawf(%e , u, 0, 2, sin, epsabs =

Re: embedding ecl without (build-program)

2016-02-29 Thread Daniel Kochmański
Hello, Juraj Variny writes: > Hello, > > Is there is a way for ECL only to generate a bunch of .cpp files that can be > fed to existing build system? I'm halfway there by generating C from my > (ffi:c-inline) stuff like: > > (compile-file "src/common/lisp/lispinterface.lisp" :output-file > "s

embedding ecl without (build-program)

2016-02-29 Thread Juraj Variny
Hello, Is there is a way for ECL only to generate a bunch of .cpp files that can be fed to existing build system? I'm halfway there by generating C from my (ffi:c-inline) stuff like: (compile-file "src/common/lisp/lispinterface.lisp" :output-file "src/common/lisp/lispinterface.cpp"). But ho