<p dir="ltr">Hi,</p>
<p dir="ltr">After speaking a bit with jackdaniel on irc, it seems that the issue is correctly writing the .a files? If so, since it's a simple ar archive, this could be done in Lisp. I wrote an ar writer in less than 100 lines with some hard coded values: <a href="https://github.com/ralt/deb-packager/blob/master/src/ar.lisp">https://github.com/ralt/deb-packager/blob/master/src/ar.lisp</a></p>
<p dir="ltr">The format is basically: a global header followed by the entries. (Entries format is relatively straightforward, I invite you to look at the code.)</p>
<p dir="ltr">I think it would be pretty straightforward to implement the reader in Lisp to manually add .o files to the end of the .a archive. (Basically, add new entries at the end of the archive.)</p>
<p dir="ltr">Maybe I haven't fully understood the issue though. In that case, you can fully ignore me :-)</p>
<p dir="ltr">Regards,<br>
Florian<br></p>
<p dir="ltr">Le 6 oct. 2015 07:50, "Daniel Kochmański" <<a href="mailto:daniel@turtleware.eu">daniel@turtleware.eu</a>> a écrit :<br>
><br>
><br>
> Faré writes:<br>
><br>
> > On Tue, Oct 6, 2015 at 1:18 AM, Daniel Kochmański <<a href="mailto:daniel@turtleware.eu">daniel@turtleware.eu</a>> wrote:<br>
> >><br>
> >> Faré writes:<br>
> >><br>
> >>> Difficulties making monolithic-lib-op portable suggest that it (and<br>
> >>> maybe also lib-op) should output an object file as if by ld -r rather<br>
> >>> than a static library. Indeed, there is no *portable* way to combine<br>
> >>> several .a files into a single one on a BSD system (including MacOS<br>
> >>> X). Or should that be the case only on said systems?<br>
> >><br>
> >> We have currently bug regarding combining static libraries[1], but doesn't<br>
> >> BSD nor OSX support libtool? If yes, then we can just extract all<br>
> >> objects from static archive and combine them again.<br>
> >><br>
> >> [1] <a href="https://gitlab.com/embeddable-common-lisp/ecl/issues/177">https://gitlab.com/embeddable-common-lisp/ecl/issues/177</a><br>
> >><br>
> >>     In one of the comments @Whimse provides a working solution using<br>
> >>     libtool.<br>
> >><br>
> > Do you require libtool to be installed on BSD (including OSX)?<br>
> > It certainly doesn't come standard, not even on Linux.<br>
><br>
> It is at least dependency at ECL compilation time (bdwgc requires<br>
> it). It isn't that unreasonable to require it for C backend.<br>
> > Also, I could never get libtool to work correctly, even on Linux,<br>
> > despite having alleged cut-and-paste recipes and a man page.<br>
><br>
> @Whimse claims it works just OK for him. I'll have to adjust it to play<br>
> nice with cross-compilation framework I'm working on now.<br>
> ><br>
> > I was thinking about MRI scripts, but they are also a GNUism not<br>
> > supported on BSD.<br>
> ><br>
> > Why do we need a .a rather than a .o, anyway?<br>
> > For the proposed use case, a .o seems more reasonable.<br>
><br>
> That's what we do - we combine .o files. But Sometimes we want to<br>
> combine with already built static libraries. That's when such approach<br>
> would be necessary. Mentioned bug affects only such situations. If you<br>
> just do monolithic build from lisp lisp sources then there's not a<br>
> problem.<br>
> ><br>
> > —♯ƒ • François-René ÐVB Rideau •Reflection&Cybernethics• <a href="http://fare.tunes.org">http://fare.tunes.org</a><br>
> > Director is a misnomer. You're a hoper. You put all these people together and<br>
> > you hope it all works out.  — Frank Oz, director of "Dirty Rotten Scoundrels"<br>
><br>
> --<br>
> Daniel Kochmański | Poznań, Poland<br>
> ;; aka jackdaniel<br>
><br>
> "Be the change that you wish to see in the world." - Mahatma Gandhi<br>
><br>
</p>