Re: [racket] Marking dependencies on dynamically required modules.

2013-03-20 Thread Eric Dobson
It looks like these get turned into collects paths automatically (for paths in collects dir), and other modules that are required normally have the complete path already in deps and this is no different. So cm-accomplice will solve my issue. On Tue, Mar 19, 2013 at 10:29 PM, Eric Dobson wrote: >

[racket] Marking dependencies on dynamically required modules.

2013-03-19 Thread Eric Dobson
I have two files a.rkt and b.rkt, a.rkt dynamically requires b.rkt at syntax time. a.rkt: #lang racket (require (for-syntax compiler/cm-accomplice)) (define-syntax (go stx) (dynamic-require "b.rkt" #f) #''success) (go) b.rkt: #lang racket (when #f (error 'this-might-break)) If I compile