Skip to content
This repository has been archived by the owner on Aug 31, 2021. It is now read-only.

Commit

Permalink
Tweaks to enable Guile bootstrap
Browse files Browse the repository at this point in the history
  • Loading branch information
eholk committed Aug 27, 2019
1 parent 1486de6 commit 85d2b4c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion lib/schism.ss
Expand Up @@ -15,7 +15,8 @@
;; This library contains non-standard Schism-isms.
(library (schism)
(export gensym list-all-eq?)
(import (rnrs))
(import (rnrs)
(%schism-runtime))

(define (gensym t) ;; Creates a brand new symbol that cannot be reused
(unless (string? t) (error 'gensym "not a string"))
Expand Down
3 changes: 2 additions & 1 deletion schism/compiler.ss
Expand Up @@ -16,7 +16,8 @@
(export compile-library compile-stdin->stdout)
(import (rnrs)
(rnrs mutable-pairs)
(schism))
(schism)
(%schism-runtime))
;; ====================== ;;
;; Helpers, etc. ;;
;; ====================== ;;
Expand Down

0 comments on commit 85d2b4c

Please sign in to comment.