Important Notice: Our web hosting provider recently started charging us for additional visits, which was unexpected. In response, we're seeking donations. Depending on the situation, we may explore different monetization options for our Community and Expert Contributors. It's crucial to provide more returns for their expertise and offer more Expert Validated Answers or AI Validated Answers. Learn more about our hosting issue here.

How do I build mlisp, alisp, or allegro images?

Allegro build images
0
Posted

How do I build mlisp, alisp, or allegro images?

0
10

Windows: paste this into the Debug window to build one of mlisp.exe or alisp.exe: ;; mlisp: (progn (build-lisp-image “sys:mlisp.dxl” :case-mode :case-sensitive-lower :include-ide nil :restart-app-function nil :restart-init-function nil) (when (probe-file “sys:mlisp.exe”) (delete-file “sys:mlisp.exe”)) (sys:copy-file “sys:allegro-express.exe” “sys:mlisp.exe”)) ;; alisp: (progn (build-lisp-image “sys:alisp.dxl” :case-mode :case-insensitive-upper :include-ide nil :restart-app-function nil :restart-init-function nil) (when (probe-file “sys:alisp.exe”) (delete-file “sys:alisp.exe”)) (sys:copy-file “sys:allegro-express.exe” “sys:alisp.exe”)) ;; allegro: (progn (build-lisp-image “sys:allegro.dxl” :case-mode :case-sensitive-lower) (when (probe-file “sys:allegro.exe”) (delete-file “sys:allegro.exe”)) (sys:copy-file “sys:allegro-express.exe” “sys:allegro.exe”)) UNIX: evaluate the following form to build mlisp image from a running alisp: (progn (build-lisp-image “sys:mlisp.dxl” :case-mode :case-s

Related Questions

What is your question?

*Sadly, we had to bring back ads too. Hopefully more targeted.

Experts123