Re: The status of JIT compiler of Guile (was: Guile benchmark)

2017-03-13 Thread Nala Ginrut
This version has fixed file missing during compilation. On Tue, Mar 14, 2017 at 10:35 AM, Nala Ginrut wrote: > Rebased to the latest, folks may download the tarball directly > https://github.com/NalaGinrut/guile-tjit/releases/tag/tjit-2.1.8.975-1f6fc-rebase > > > On Mon,

Re: The status of JIT compiler of Guile (was: Guile benchmark)

2017-03-13 Thread Nala Ginrut
Rebased to the latest, folks may download the tarball directly https://github.com/NalaGinrut/guile-tjit/releases/tag/tjit-2.1.8.975-1f6fc-rebase On Mon, Mar 6, 2017 at 7:19 PM, Nala Ginrut wrote: > I've rebased the latest master (2.1.7.1040-0f7db-dirty) and fixed to work.

Re: guile 2.1.7 skips while condition

2017-03-13 Thread Andy Wingo
On Mon 13 Mar 2017 18:09, Arne Babenhauserheide writes: > Arne Babenhauserheide writes: > >> Andy Wingo writes: >> >>> On Thu 09 Mar 2017 15:31, Arne Babenhauserheide writes: >>> However I did not manage to reproduce it in a small

Re: guile 2.1.7 skips while condition

2017-03-13 Thread Andy Wingo
On Mon 13 Mar 2017 18:09, Arne Babenhauserheide writes: > Here’s a shortened version: Thanks. Here's a shorter version :) (call-with-input-string "A" (lambda (inport) (let ((nextchar (read-char inport))) (while (not (eof-object? nextchar)) (pk nextchar)

Re: guile 2.1.7 skips while condition

2017-03-13 Thread Arne Babenhauserheide
Arne Babenhauserheide writes: > Andy Wingo writes: > >> On Thu 09 Mar 2017 15:31, Arne Babenhauserheide writes: >> >>> However I did not manage to reproduce it in a small example, therefore I >>> pastebinned the whole file: >>> >>> script:

Re: [PATCH] Add to the 2.1.x branch GUILE_SITE_CCACHE_DIR and GUILE_EXTENSION_DIR Autoconf macros along with needed siteccachdir entry in pkgconfig file

2017-03-13 Thread Andy Wingo
On Sun 12 Mar 2017 10:38, Freja Nordsiek writes: > Guile provides the GUILE_SITE_DIR Autoconf macro for finding where a > user should install scheme files, but there are no equivalent macros > for the directories to put compiled go files and C extensions into. > The patch