Re: quick way to test compatibility

2017-04-08 Thread Pascal Bourguignon
> On 8 Apr 2017, at 11:29, Fabrizio Fabbri wrote: > > >> Il giorno 7 apr 2017, alle ore 16:51, Gross, Daniel > > ha scritto: >> >> Hi, >> >> I have some lisp source code and would like to test compatibility with ECL. >> Is there a simple way to test for compa

Re: Running examples from REPL

2017-06-04 Thread Pascal Bourguignon
> On 4 Jun 2017, at 23:15, Ivan Truskov wrote: > > Hello > I am trying to have a go with ECL. I have built ECL on windows 10 > machine with 64-bit Visual Studio (community version) and i am trying to > run example on build that comes with the source code. > > In open window of ecl.exe, i go to

Re: ECL + EQL Standalone Binary

2017-09-25 Thread Pascal Bourguignon
> On 25 Sep 2017, at 19:19, John Mercouris wrote: > > Hey everyone, > > I’m John (the developer of nEXT (https://github.com/neXT-Browser/nEXT/ > ), > > I’m trying to produce a standalone binary. I managed to create a “.app” > bundle of my application,

Re: ECL + EQL Standalone Binary

2017-09-25 Thread Pascal Bourguignon
> On 25 Sep 2017, at 22:47, John Mercouris wrote: > > Hi Pascal, > > Thank you for your email, > > 1. You’re correct, I had to manually copy the libraries in to the app bundle, > I just did something like: > > > cp /usr/local/lib/libeql5.1.dylib ./next.app/Contents/Frameworks/ > > 2. I s

Re: ECL + EQL Standalone Binary

2017-09-25 Thread Pascal Bourguignon
what to make of it, it looks very similar to your > output as well, > > -John >> On Sep 25, 2017, at 16:58, Pascal Bourguignon > <mailto:p...@informatimago.com>> wrote: >> >> >> >> >>> On 25 Sep 2017, at 22:47, John Mercouris >&

Re: Where to go with EQL5 and QT specific questions?

2021-04-29 Thread Pascal Bourguignon
Le 29/04/2021 à 17:25, pls.153 a écrit : On Thursday, April 29, 2021 4:31 PM, Erik Winkels wrote: Condition of type: FILE-ERROR Filesystem error with pathname "SYS:help.doc". Either 1. the file does not exist, or 2. we are not allowed to access the file, or 3.

Re: How to use lisp packages from libraries?

2021-07-05 Thread Pascal Bourguignon
Le 05/07/2021 à 22:12, Иван Трусков a écrit : What should be done for me to be able to use some package (installed with quicklisp) from my ECL library? How should the initialisation be done? There are 3 questions: - how to use packages? - how to use quicklisp? - what initialization is needed?

Re: Compiling a binary that uses quicklisp

2023-02-09 Thread Pascal Bourguignon
Le 10/02/2023 à 00:20, Brandon Hale a écrit : Hello all, I apologize if this is either the wrong place to get help with ecl, or if this is asked all of the time. I've written a small replacement for i3status with common lisp and want to use ecl to make a binary so when i3wm loads, it just loa

Re: Compiling a binary that uses quicklisp

2023-02-10 Thread Pascal Bourguignon
Le 10/02/2023 à 01:07, Brandon Hale a écrit : ecl produces elf binaries.  You will want to compile, and link all your code into this executable file. So you don't need to load asdf or anything else at run-time (in the prologue-code).  Instead, you load asdf, quicklisp, and your code, when you g

Re: Compiling a binary that uses quicklisp

2023-02-10 Thread Pascal Bourguignon
Le 10/02/2023 à 19:50, Brandon Hale a écrit : Don't be confused by the various implementations of helloword in that project.  Look at the Makefile, only the lisp files are used when compiling with ecl. One thing I am confused about with this are all of the #-(and) in generate.lisp. I know the