[racket-dev] JFYI, c-level assertion failures during build

2017-02-24 Thread 'John Clements' via dev-redirect
I’m currently in a state where calling `make` in my top-level racket directory results in output ending thusly: … raco setup: 1 making: /cldr-bcp47/cldr/bcp47/data Assertion failed: (!(used && (pre_body->count == 1) && pre_body->vars[0]->optimize.known_val && ((Scheme_Type)(scheme_once_used_type

Re: [racket-dev] Chez Scheme as the Racket VM

2017-02-24 Thread Matthew Flatt
At Fri, 24 Feb 2017 16:02:45 -0300, Gustavo Massaccesi wrote: > *** Chez may reorder expressions. > > (car (list (display 1) (display 2))) ;==> 21# > > I think this is ok in RNRS and Chez, but it may cuase a problem for a > program translated directly from Racket. I think that all the reorders >

Re: [racket-dev] Chez Scheme as the Racket VM

2017-02-24 Thread Gustavo Massaccesi
I have been looking at some of the optimizations, and I found a few interesting differences. *** Chez may reorder expressions. (car (list (display 1) (display 2))) ;==> 21# I think this is ok in RNRS and Chez, but it may cuase a problem for a program translated directly from Racket. I think th