Re: [racket-dev] Release for v6.1.1 is about to begin

2014-10-02 Thread Nick Sivo
Indeed it does. Sorry for not thinking of that first! -Nick On Thu, Oct 2, 2014 at 12:59 PM, Matthew Flatt mfl...@cs.utah.edu wrote: The latest should work. Please try a snapshot: http://pre.racket-lang.org/ At Thu, 2 Oct 2014 12:55:50 -0700, Nick Sivo wrote: Figured I'd wait until OS X

[racket-dev] Trouble building on FreeBSD 9.1

2013-09-11 Thread Nick Sivo
Hi, When building Racket from source on FreeBSD 9.1, I get the following errors: gcc -o racketcgc main.o libracket.a libmzgc.a -pthread -lm -rdynamic -L/usr/local/lib -lffi libracket.a(number.o): In function `sch_powl':

Re: [racket-dev] Trouble building on FreeBSD 9.1

2013-09-11 Thread Nick Sivo
Disabling extflonums (--disable-extflonums) seems to have it working now. Are they unsupported on FreeBSD x64? -Nick On Wed, Sep 11, 2013 at 5:02 PM, Nick Sivo nicks...@gmail.com wrote: Hi, When building Racket from source on FreeBSD 9.1, I get the following errors: gcc -o racketcgc main.o

Re: [racket-dev] warning: CRLF will be replaced by LF in {src/worksp/README src/worksp/gracket/gracket.rc src/worksp/racket/racket.rc} ?

2012-12-11 Thread Nick Sivo
I've had success both with the settings and normalization process described here: https://help.github.com/articles/dealing-with-line-endings It comes up a lot since I work on Windows, Mac, and FreeBSD pretty regularly. -Nick On Tue, Dec 11, 2012 at 8:08 AM, Eli Barzilay e...@barzilay.org

[racket-dev] current-load-extension: expects argument of type procedure (arity 2); given #([^:]*):(.*)

2012-05-01 Thread Nick Sivo
Hi Everyone, I'm trying to add support for per-thread allocation accounting to aid in some performance debugging. I've already instrumented the GC and can retrieve the statistics via hacks I added to current-memory-use. I'm running into trouble reverting current-memory-use and instead adding a

[racket-dev] Intro to 3m?

2012-03-09 Thread Nick Sivo
Hello, I'm optimizing some code and have used gc-info logging to correlate substantial application pauses with GC occurrences. This make sense. The obvious solution is to allocate less memory, but tracking down where it's coming from isn't easy. In the short term I plan to inject