turning off the cache by default till I can look at the problem more carefully
This commit is contained in:
parent
97fa80abcc
commit
67fef12672
|
@ -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
|
||||
|
|
|
@ -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)]
|
||||
|
|
Loading…
Reference in New Issue
Block a user