From 1b8250de146eb70e94d6ac67532f99df6191588f Mon Sep 17 00:00:00 2001 From: Philip McGrath Date: Wed, 14 Apr 2021 00:06:58 -0400 Subject: [PATCH] readme: remove reference to Boehm GC --- racket/src/bc/README.txt | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/racket/src/bc/README.txt b/racket/src/bc/README.txt index cb05a3e16f..ff7dcd44ae 100644 --- a/racket/src/bc/README.txt +++ b/racket/src/bc/README.txt @@ -31,22 +31,6 @@ and 3m variants with a "3m" suffix. Additional Compilation Notes ======================================================================== -CGC Build Options ------------------ - -As noted above in "CGC versus 3m", Racket builds a CGC variant in the -process of creating the normal 3m variant. Within the CGC variant, two -implementations are possible. - -By default, Racket CGC is implemented with SenoraGC (in the "sgc" -directory), which is relativey portable. Provide `--disable-sgc` to -instead use the Boehm GC (in the "gc" directory), which should perform -better and was the default for Racket CGC through version 6.1. - -The variant of the Boehm GC that is included with Racket has been -modified slightly from Boehm's standard distribution; mostly, the -changes modify the way that object finalization is handled. - Floating point, x87, SSE, Extflonums, and the JIT -------------------------------------------------