How to use buildapp with predefined asd file

I intend to use buildapp to get executables from my lisp code, but I don’t understand how I can specify my .asd file for the project, to download the code.

I suggested that some call:

buildapp --asdf-file:/path/to/projectasdffile.asd \
         --entry-point package:main

But the examples presented by the main page do not cover the call, which I recognize as equal, all the calls of the examples look like the definition of asdf itself. This will be a little big for the whole project, especially since I already have a full project definition (using asdf).

Therefore: Is there a way to use buildapp, for example, to call an imaginary example?

+3
source share
1 answer

buildapp --load-path /path/to/project --load-system project gotta do the trick.

+3
source

Source: https://habr.com/ru/post/1792348/


All Articles