Skip to content

How to load trial in clasp

Karsten Poeck edited this page Apr 26, 2019 · 5 revisions
(define-operator-objects
  == != = += -= *= /= %= <<= >>= &= ^= \|=
  ++ -- << >>  ^^ \|\| && <= >= < >
  + - * / % & ^ ! \|
  \( \) \[ \] \{ \} \; 
  #-clasp \. #+clasp |.|
  ? \: \,)
build/clasp
(load "~/quicklisp/setup.lisp")
(setq clasp-cleavir::*use-ast-interpreter* nil)
;;; be very patient, needs 1 hour on my machine
(ql:quickload :cl-jpeg)
  • load trial
build/clasp
;;; be very patient
(ql:quickload :trial)
  • try it out
;;; I had to delete :trial from the dependencies in the following :asd, don't know yet whether this is a clasp error
(ql:quickload :trial-glfw :verbose t)
(trial:launch 'trial::workbench)
Clone this wiki locally