Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.ruby > #2824
| From | Alex Young <alex@blackkettle.org> |
|---|---|
| Newsgroups | comp.lang.ruby |
| Subject | Re: Building extensions into static libraries |
| Date | Thu, 14 Apr 2011 00:38:13 -0500 |
| Organization | Service de news de lacave.net |
| Lines | 58 |
| Message-ID | <cb19108d9016e8c90b496f19d035347c@ruby-forum.com> (permalink) |
| References | <d91d62db0fd3fffefa35dd68d23c2939@ruby-forum.com> <e7d092f7-8ede-40d2-9cdf-4d556af6a729@17g2000prr.googlegroups.com> <f59d2b5fa81e0f30c120e6895341fb14@ruby-forum.com> <6d526e35-4803-4f52-a289-99b5503da3be@t13g2000vbo.googlegroups.com> |
| NNTP-Posting-Host | bristol.highgroove.com |
| Content-Type | text/plain; charset=UTF-8 |
| Content-Transfer-Encoding | 7bit |
| X-Trace | talisker.lacave.net 1302759503 84732 65.111.164.187 (14 Apr 2011 05:38:23 GMT) |
| X-Complaints-To | abuse@lacave.net |
| NNTP-Posting-Date | Thu, 14 Apr 2011 05:38:23 +0000 (UTC) |
| In-Reply-To | <6d526e35-4803-4f52-a289-99b5503da3be@t13g2000vbo.googlegroups.com> |
| X-Received-From | This message has been automatically forwarded from the ruby-talk mailing list by a gateway at comp.lang.ruby. If it is SPAM, it did not originate at comp.lang.ruby. Please report the original sender, and not us. Thanks! For more details about this gateway, please visit: http://blog.grayproductions.net/categories/the_gateway |
| X-Mail-Count | 381507 |
| X-Ml-Name | ruby-talk |
| X-Rubymirror | Yes |
| X-Ruby-Talk | <cb19108d9016e8c90b496f19d035347c@ruby-forum.com> |
| Path | csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!news.dougwise.org!feed.ac-versailles.fr!talisker.lacave.net!lacave.net!not-for-mail |
| Xref | x330-a1.tempe.blueboxinc.net comp.lang.ruby:2824 |
Show key headers only | View raw
Luis Lavena wrote in post #992613:
> On Apr 13, 12:20pm, Alex Young <a...@blackkettle.org> wrote:
>>
>> neither do I know where else to look.
>>
>
> That that is why I asked what you're targeting/aiming at.
>
> If you want to generate an static library of your extension, then you
> can't rely on mkmf.
>
> mkmf is aimed to generated shared libraries to be loaded by Ruby.
>
Ok, some more details: I'm trying to embed a ruby interpreter into a
static-linked binary, along with some additional binary extensions from
rubygems. This works for the extensions in stdlib, whose Makefiles get
a STATIC_LIB entry of $(TARGET).a thanks to mkmf.rb. I don't see how,
though. The top-level Makefile following a ./configure in the ruby
source tree contains this:
EXTCONF = extconf.rb
..
extconf:
$(MINIRUBY) -run -e mkdir -- -p "$(EXTCONFDIR)"
$(RUNRUBY) -C "$(EXTCONFDIR)" $(EXTCONF) $(EXTCONFARGS)
I can't see where EXTCONFARGS is set, or I'd just copy that. I don't
see any obvious settings in the existing extconf.rb files either.
> For that to work you will need to create a Makefile (or adapt the one
> generated by mkmf) to generate a static library.
Going by the stdlib extensions, I don't think that's the case, but you'd
know better than me.
<snip>
> $ gcc -c mylib.c -o mylib.o
>
> $ ar rcs libmylib.a mylib.o
I might be able to get away with sidestepping the extensions' Makefiles
and
just do a
$ find ext/ -name "*.o" | xargs ar rcs libwhatsit.a
but I imagine that would break horribly for reasons I haven't thought
of.
--
Alex
--
Posted via http://www.ruby-forum.com/.
Back to comp.lang.ruby | Previous | Next — Previous in thread | Find similar | Unroll thread
Building extensions into static libraries Alex Young <alex@blackkettle.org> - 2011-04-12 15:21 -0500
Re: Building extensions into static libraries Luis Lavena <luislavena@gmail.com> - 2011-04-12 13:34 -0700
Re: Building extensions into static libraries Alex Young <alex@blackkettle.org> - 2011-04-13 10:20 -0500
Re: Building extensions into static libraries Luis Lavena <luislavena@gmail.com> - 2011-04-13 14:54 -0700
Re: Building extensions into static libraries Alex Young <alex@blackkettle.org> - 2011-04-14 00:38 -0500
csiph-web