Skip to content

Instantly share code, notes, and snippets.

@snmsts
Created July 29, 2013 07:41
Show Gist options
  • Save snmsts/6102689 to your computer and use it in GitHub Desktop.
Save snmsts/6102689 to your computer and use it in GitHub Desktop.
couldn't load fasl.
#!/bin/sh
rm -rf /tmp/iolib-fasl/
sbcl --no-userinit --script <<EOT
(in-package :common-lisp-user)
(load #P"~/quicklisp/setup.lisp")
(asdf:enable-asdf-binary-locations-compatibility
:centralize-lisp-binaries t
:default-toplevel-directory (ensure-directories-exist #P"/tmp/hoge/../iolib-fasl/")
:map-all-source-files t)
(ql:quickload :iolib)
EOT
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment