On Tuesday, April 27, 2021 1:13 PM, Erik Winkels aerique@xs4all.nl wrote:
$ eql5-sfos [D] unknown:0 - Using Wayland-EGL
Condition of type: SIMPLE-ERROR Package ((SB-BSD-SOCKETS . #<SB-BSD-SOCKETS package>)) referenced in compiled file
NIL but has not been created
Just a quick reply: with a static build, you need to statically link all of the (eventually needed) dependencies of the ECL 'contrib' libs into your executable. Please see the following line of an iOS example, where the 'sockets' lib (needed in your case) is added manually as a static lib dependency:
https://gitlab.com/eql/eql5-ios/-/blob/master/examples/REPL/repl.pro#L7
(note -lsockets)
Paul