turning off the cache by default till I can look at the problem more carefully

This commit is contained in:
Danny Yoo 2012-02-15 14:23:34 -05:00
parent 97fa80abcc
commit 67fef12672
2 changed files with 10 additions and 1 deletions

View File

@ -94,7 +94,7 @@
;; Turns on caching of compiled programs, so that repeated compilations
;; will reuse existing work.
(: current-with-cache? (Parameterof Boolean))
(define current-with-cache? (make-parameter #t))
(define current-with-cache? (make-parameter #f))
;; Turns on ie legacy support; includes excanvas and other helper libraries

View File

@ -82,6 +82,9 @@
[("--without-ie")
("Disable IE legacy support")
(current-with-legacy-ie-support? #f)]
[("--with-cache")
("Turn on the internal compilation cache")
(current-with-cache? #t)]
[("--without-cache")
("Turn off the internal compilation cache")
(current-with-cache? #f)]
@ -124,6 +127,9 @@
[("--without-ie")
("Disable IE legacy support")
(current-with-legacy-ie-support? #f)]
[("--with-cache")
("Turn on the internal compilation cache")
(current-with-cache? #t)]
[("--without-cache")
("Turn off the internal compilation cache")
(current-with-cache? #f)]
@ -153,6 +159,9 @@
[("--without-ie")
("Disable IE legacy support")
(current-with-legacy-ie-support? #f)]
[("--with-cache")
("Turn on the internal compilation cache")
(current-with-cache? #t)]
[("--without-cache")
("Turn off the internal compilation cache")
(current-with-cache? #f)]