Re: [racket] help with building racket on Solaris-Sparc

2012-04-22 Thread Matthew Flatt
I will have to investigate further, but as a workaround, you could try configuring with `--enable-sgc'. That option causes a different garbage collector to be used as an intermediate step toward building Racket's normal garbage collector. At Sun, 22 Apr 2012 15:04:38 -0400 (EDT), HP Wei wrote: >

Re: [racket] scribble/lp: comments stripped, how to stop?

2012-04-22 Thread Matthias Felleisen
I haven't used /lp myself. I am stuck here -- Matthias On Apr 22, 2012, at 12:25 AM, Deren Dohoda wrote: > Hi Matthias, > > I cannot seem to get it to work. I can get scribble to be happy, but > not the scribble/lp file. > > First try: (somewhere in the middle of the file) > @(begin > #rea

[racket] help with building racket on Solaris-Sparc

2012-04-22 Thread HP Wei
I am stuck during the process of building racket-5.2.1 on a sparc machine running SunOS 5.10. gcc = gnu 4.3.2 ld = gnu 2.21 -- The process stops at this directory: /path/racket-5.2.1/src/build/racket/gc it has mach_dep1.lo, and mach_dep2.lo and tries to do ./if_mach SPAR

Re: [racket] (no subject)

2012-04-22 Thread Michael W
Using 'eval' is really slow; I suspect that's what's killing your performance here. Also, parsing a string to an expression every time might hurt too. Here's my crack at it: https://gist.github.com/2462109 This one takes 36 seconds on my laptop. Memory usage is pretty constant at about 33M. (Sorry