Re: [EQL5] `init_lib_APP__ALL_SYSTEMS` strangeness
PR <[email protected]> Fri, 18 Dec 2020 17:50:36 +0100
| Newsgroups | gmane.lisp.ecl.general |
|---|---|
| Message-ID | <CAOJeB-BJ26Xup7jO9KVgFA2L_PHVQf8OtD=0BQzR88g+kPzHLA@mail.gmail.com> |
On 12/18/20, Erik Winkels <aerique-qWit8jRvyhVmR6Xm/[email protected]> wrote: > eql5-sfos.o: in function `main': > eql5-sfos.cc:(.text.startup+0x2c8): undefined reference to > `init_lib_APP__ALL_SYSTEMS' > collect2: error: ld returned 1 exit status > make: *** [Makefile:170: eql5-sfos] Error 1 In your 'make.lisp' in 'asdf:make-build' you could try to add a line with the init name: (asdf:make-build "app" :monolithic t :type :static-library :move-here "./" :init-name "init_lib_APP__ALL_SYSTEMS") This should fix it. Paul