Re: [PATCH] Implement platform autodetection when possible

2020-03-24 Thread kooda
Evan Hanson wrote: > Hi there, > > Here's a signed-off version of the latest patch, including removing the > handling of iOS as John suggested. I've also fixed the capitalisation of > the Haiku platform name, added a bit more info to the NEWS entry, and > moved it into the correct section. Hey,

Re: [PATCH] use -rpath option

2020-03-24 Thread kooda
felix.winkelm...@bevuta.com wrote: > This patch replaces the use of the "-R" linker option by "-rpath", which > appears to be > more portable (accepted by tcc, for example). According to the GNU ld manual, > -R is > actually a compatibility alias for -rpath, so the latter seems to be more >

Re: [PATCH] use -rpath option

2020-03-24 Thread John Cowan
Again, amazing. Does this mean that Chicken *output* can also be built with tcc? Now that the compiler is modularized, that would give Chicken a dynamic compiler. On Tue, Mar 24, 2020 at 9:03 AM wrote: > felix.winkelm...@bevuta.com wrote: > > This patch replaces the use of the "-R" linker

irregex-match? & specialize question

2020-03-24 Thread Kon Lovett
= I must be missing something cat >matches-prob-test.scm <<'HERE' (import scheme) (import (chicken irregex)) (define (uses-predicate str) (and (string? str) (irregex-match? '(: "foo") str) ) ) (print "uses-predicate: " (uses-predicate "")) HERE csc ./matches-prob-test.scm

Re: irregex-match? & specialize question

2020-03-24 Thread Peter Bex
On Tue, Mar 24, 2020 at 10:46:36AM -0700, Kon Lovett wrote: > = I must be missing something Hi Kon, This is an interesting little bug you found here. I don't understand it at all. However, I tested with older CHICKEN versions and it seems to break with 4.9.0 up till HEAD, so it's not a new

Re: irregex-match? & specialize question

2020-03-24 Thread felix . winkelmann
> = I must be missing something > > cat >matches-prob-test.scm <<'HERE' > (import scheme) > (import (chicken irregex)) > > (define (uses-predicate str) > (and > (string? str) > (irregex-match? '(: "foo") str) ) ) > > (print "uses-predicate: " (uses-predicate "")) > HERE > > csc

Re: [PATCH] Add missing build dependencies to targets in makefile

2020-03-24 Thread Evan Hanson
This has been applied to master. Thanks again Jani!