bug#52239: R7RS define-library does not support cond-expand
Amirouche <[email protected]>
| Newsgroups | gmane.lisp.guile.bugs |
|---|---|
| Message-ID | <qoQwN21SACNlstxN17CWY0JaMp6V9WnC055wskL9gz7CY-9q2H1pqqhjEIx7Q7ENhVhAoKc6VLKQULZoJWESN201frP3nG263nOFualSyw8=@hyper.dev> |
workaround:
#;> find live -type f -exec sh -c "echo \";;; cat {}\"; cat {}" \;
;;; cat live/hello/body.scm
(define (hello name)
(display "Hello schemer ")
(display name)
(display "!")
(newline))
;;; cat live/hello.scm
(define-library (live hello)
(import (scheme base)
(scheme write))
(export hello)
(include "hello/body.scm"))
;;; cat live/hello.sld
(define-library (live hello)
(import (scheme base)
(scheme write))
(export hello)
(cond-expand
((or mit guile chibi gambit gerbil loko)
(include "hello/body.scm"))
;; That is the rule picked up by chicken
(else (include "live/hello/body.scm"))))
;;; cat live/hello.rkt
#!r7rs
(define-library (live hello)
(export hello)
(import (scheme base)
(scheme write))
(include "hello/body.scm"))
;;; cat live/hello.chez.sls
(library (live hello)
(export hello)
(import (chezscheme))
(include "hello/body.scm"))
#;>
The following command
guile myprogram.scm
will pick `live/hello.scm` as the library `(live hello)`
Unlike:
guile --r7rs myprogram.scm
that will pick `live/hello.sld` that contains a cond-expand, and that is not supported by guile.