Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
75 views

How to link to external c library with ruby's mkmf?

I have the following files in this directory: ~/test/lib/liblost.dylib ~/test/include/lost.h I am trying to let my rubygem determine if the above library exists by doing the following in irb: ...
0
votes
0answers
31 views

How to exclude files when using Ruby's mkmf

I am building a Ruby C extension to wrap an existing C library. That library includes a source file that is not to be compiled separately as it is included by another source file. My extconf.rb file ...
0
votes
1answer
42 views

mkmf ignores files in sub-folders when it compiles the C extension

I'd like to organize the C source code like this: + / | |___ + ext | | | |___ + native_extension | | | |___ + lib | | | | | |___ (Source files are kept in ...