Skip to content

Instantly share code, notes, and snippets.

@snmsts
Created March 10, 2015 20:00
Show Gist options
  • Save snmsts/68a83577de2201e77a8c to your computer and use it in GitHub Desktop.
Save snmsts/68a83577de2201e77a8c to your computer and use it in GitHub Desktop.
how to use ros dump executable
$ ros -l test.lisp -E cl-user::main dump executable hoge
To load "clack":
Load 1 ASDF system:
clack
; Loading "clack"
...................
[undoing binding stack and other enclosing state... done]
[saving current Lisp image into hoge:
writing 5824 bytes from the read-only space at 0x20000000
writing 3168 bytes from the static space at 0x20100000
writing 77856768 bytes from the dynamic space at 0x1000000000
done]
$ ./hoge 1 2 3
("1" "2" "3")
CLACK:CLACKUP (fbound)$
(ql:quickload :clack)
(defun main (&rest r)
(print r)
(apropos "clackup"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment