relax asdf on windows for swank

This commit is contained in:
David Botton 2024-07-11 13:48:03 -04:00
parent be0001da76
commit f54d84046b
5 changed files with 14 additions and 1 deletions

8
OCICL.md vendored
View file

@ -21,6 +21,14 @@ sbcl --userinit init --eval "(asdf:load-system :clog/tools)" --eval "(clog-tools
```
(or replace ecl for sbcl)
On Windows:
```
sbcl --userinit init --eval "(setf asdf:*compile-file-failure-behaviour* :warn)" --eval "(asdf:load-system :clog/tools)" --eval "(clog-tools:clog-builder :port 0 :app t)"
and after first run can use run-ocicl.bat
```
I N S T A L L
=============

2
clog.asd vendored
View file

@ -72,7 +72,7 @@
(asdf:defsystem #:clog/tools
:depends-on (#:clog #:clog-ace #:clog-terminal #:s-base64 #:cl-indentify
#:definitions #:parenscript #:trivial-main-thread)
#:definitions #:parenscript #:trivial-main-thread #:swank)
:pathname "tools/"
:components (;; clog-db-admin app
(:file "clog-db-admin")

View file

@ -3,6 +3,9 @@
This is a project to do ... something.
run-ocicl.bat - run the clog-builder for this project if using ocicl
run-ql.bat - run the clog-builder for this project if using QuickLisp
## License
Specify license here

1
templates/projects/clog/run-ocicl.bat vendored Normal file
View file

@ -0,0 +1 @@
sbcl --userinit init --eval "(setf asdf:*compile-file-failure-behaviour* :warn)" --eval "(asdf:load-system :clog/tools)" --eval "(clog-tools:clog-builder :port 0 :app t)"

1
templates/projects/clog/run-ql.bat.lt vendored Normal file
View file

@ -0,0 +1 @@
sbcl --eval "(ql:quickload :clog/tools)" --eval "(clog-tools:clog-builder :project :<%= (@ sys-name) %> :port 0 :app t)"