Re: ECL + EQL Standalone Binary

2017-09-25 Thread PR
2017-09-25 19:19 GMT+02:00, John Mercouris : > Any ideas on how to proceed would be very useful, thank you, Hi John, the only thing that currently comes to mind is trying to comment out the line EQL::ini(argv); in your main.cpp (this function simply calls cl_boot(); I remember that I needed t

Re: ECL + EQL Standalone Binary

2017-09-25 Thread John Mercouris
Hi Pascal, If I don’t use the install_name_tool, and I just leave the compiled binary without changing the paths to QT or anything, it all runs fine. The issue is, I need to copy the libraries into my application bundle to make it easy to distribute for OS X, Can you explain what you mean how I

Re: ECL + EQL Standalone Binary

2017-09-25 Thread Pascal Bourguignon
> On 26 Sep 2017, at 00:41, John Mercouris wrote: > > Hi Pascal, I’ve done exactly as you said and have the following output: > > (format nil "~x"(+ 1025 #xe70)) —> "1271" Since it looks like the functions around this address are unrelated to file accesses, then we may suppose that we have

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 John Mercouris
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 saw the message is within ECL, I found the exact file with the error message,

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,

Fwd: ECL + EQL Standalone Binary

2017-09-25 Thread John Mercouris
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, and then I linked the libraries ecl and eql following this approach (https://stackoverflow.com/questions/2809930/mac