initial commit of rabbit port of lambdanative

This commit is contained in:
Ivan Raikov 2016-01-20 15:01:13 -08:00
parent bad6c7da7e
commit 76fff3d707
5 changed files with 327 additions and 0 deletions

20
rabbit.setup Normal file
View file

@ -0,0 +1,20 @@
;; -*- Hen -*-
(define (dynld-name fn)
(make-pathname #f fn ##sys#load-dynamic-extension))
(compile -S -O2 -d0 -I. -s rabbit.scm -j rabbit)
(compile -O2 -d0 -s rabbit.import.scm)
(install-extension
; Name of your extension:
'rabbit
; Files to install for your extension:
`(,(dynld-name "rabbit") ,(dynld-name "rabbit.import") )
; Assoc list with properties for your extension:
`((version 1.0)
))